ansible-role-bind9/.drone.yml

54 lines
924 B
YAML

---
kind: pipeline
type: kubernetes
name: linter
node_selector:
kubernetes.io/arch: amd64
kubernetes.io/os: linux
steps:
- name: markdown lint
commands:
- markdownlint *.md
image: docker.io/volkerraschek/markdownlint:0.33.0
resources:
limits:
cpu: 50
memory: 50M
- name: ansible lint
commands:
- ansible-lint .
image: docker.io/volkerraschek/ansible-archlinux:latest
pull: always
resources:
limits:
cpu: 250
memory: 250M
- name: email-notification
environment:
PLUGIN_HOST:
from_secret: smtp_host
PLUGIN_USERNAME:
from_secret: smtp_username
PLUGIN_PASSWORD:
from_secret: smtp_password
PLUGIN_FROM:
from_secret: smtp_mail_address
image: docker.io/drillster/drone-email:latest
resources:
limits:
cpu: 50
memory: 25M
when:
status:
- changed
- failure
trigger:
event:
exclude:
- tag