roundcube-charts/.drone.yml

93 lines
1.6 KiB
YAML
Raw Normal View History

2021-08-22 17:41:23 +00:00
---
kind: pipeline
type: kubernetes
name: linter
platform:
os: linux
arch: amd64
steps:
- name: helm lint
commands:
- helm lint
image: docker.io/volkerraschek/helm:3.9.2
2021-08-22 17:41:23 +00:00
resources:
limits:
2022-05-21 09:31:15 +00:00
cpu: 150
memory: 150M
2021-08-22 17:41:23 +00:00
- name: markdown lint
commands:
- markdownlint *.md
image: docker.io/volkerraschek/markdownlint:0.32.1
2021-08-22 17:41:23 +00:00
resources:
limits:
2022-05-21 09:31:15 +00:00
cpu: 150
memory: 150M
2021-08-22 17:41:23 +00:00
2022-06-26 16:19:01 +00:00
- name: helm template
commands:
- helm template .
image: docker.io/volkerraschek/helm:3.9.2
2022-06-26 16:19:01 +00:00
resources:
limits:
cpu: 150
memory: 150M
2021-08-22 17:41:23 +00:00
- 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:
2022-05-21 09:31:15 +00:00
cpu: 150
memory: 150M
2021-08-22 17:41:23 +00:00
when:
status:
- changed
- failure
trigger:
event:
exclude:
- tag
2022-01-25 21:09:36 +00:00
---
kind: pipeline
type: kubernetes
name: release
platform:
os: linux
steps:
- name: release-helm-chart
commands:
- helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek
- helm package --version ${DRONE_TAG} .
- helm cm-push ${DRONE_REPO_NAME%-charts}-${DRONE_TAG}.tgz volker.raschek
2022-01-25 21:09:36 +00:00
environment:
HELM_REPO_PASSWORD:
from_secret: helm_repo_password
HELM_REPO_USERNAME:
from_secret: helm_repo_username
image: docker.io/volkerraschek/helm:3.9.2
2022-05-21 09:31:15 +00:00
resources:
limits:
cpu: 150
memory: 150M
2022-01-25 21:09:36 +00:00
trigger:
event:
- tag
repo:
- volker.raschek/roundcube-charts