2021-10-28 17:41:17 +00:00
|
|
|
|
---
|
|
|
|
|
kind: pipeline
|
|
|
|
|
type: kubernetes
|
|
|
|
|
name: linter
|
|
|
|
|
|
|
|
|
|
platform:
|
|
|
|
|
os: linux
|
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: helm lint
|
|
|
|
|
commands:
|
|
|
|
|
- helm lint
|
2022-07-23 09:12:57 +00:00
|
|
|
|
image: docker.io/volkerraschek/helm:3.9.2
|
2021-10-28 17:41:17 +00:00
|
|
|
|
resources:
|
|
|
|
|
limits:
|
2022-05-21 09:30:27 +00:00
|
|
|
|
cpu: 150
|
|
|
|
|
memory: 150M
|
2021-10-28 17:41:17 +00:00
|
|
|
|
|
|
|
|
|
- name: markdown lint
|
|
|
|
|
commands:
|
|
|
|
|
- markdownlint *.md
|
2022-07-25 15:22:30 +00:00
|
|
|
|
image: docker.io/volkerraschek/markdownlint:0.32.1
|
2021-10-28 17:41:17 +00:00
|
|
|
|
resources:
|
|
|
|
|
limits:
|
2022-05-21 09:30:27 +00:00
|
|
|
|
cpu: 150
|
|
|
|
|
memory: 150M
|
2021-10-28 17:41:17 +00:00
|
|
|
|
|
2022-06-26 16:18:34 +00:00
|
|
|
|
- name: helm template
|
|
|
|
|
commands:
|
|
|
|
|
- helm template .
|
2022-07-23 09:12:57 +00:00
|
|
|
|
image: docker.io/volkerraschek/helm:3.9.2
|
2022-06-26 16:18:34 +00:00
|
|
|
|
resources:
|
|
|
|
|
limits:
|
|
|
|
|
cpu: 150
|
|
|
|
|
memory: 150M
|
|
|
|
|
|
2021-10-28 17:41:17 +00:00
|
|
|
|
- name: email-notification
|
|
|
|
|
environment:
|
2022-07-26 15:51:29 +00:00
|
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
|
SMTP_HOST:
|
2021-10-28 17:41:17 +00:00
|
|
|
|
from_secret: smtp_host
|
2022-07-26 15:51:29 +00:00
|
|
|
|
SMTP_USERNAME:
|
2021-10-28 17:41:17 +00:00
|
|
|
|
from_secret: smtp_username
|
2022-07-26 15:51:29 +00:00
|
|
|
|
SMTP_PASSWORD:
|
2021-10-28 17:41:17 +00:00
|
|
|
|
from_secret: smtp_password
|
2022-07-26 15:51:29 +00:00
|
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
2021-10-28 17:41:17 +00:00
|
|
|
|
resources:
|
|
|
|
|
limits:
|
2022-05-21 09:30:27 +00:00
|
|
|
|
cpu: 150
|
|
|
|
|
memory: 150M
|
2021-10-28 17:41:17 +00:00
|
|
|
|
when:
|
|
|
|
|
status:
|
|
|
|
|
- changed
|
|
|
|
|
- failure
|
|
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
|
event:
|
|
|
|
|
exclude:
|
|
|
|
|
- tag
|
|
|
|
|
|
2022-01-25 21:08:51 +00:00
|
|
|
|
---
|
|
|
|
|
kind: pipeline
|
|
|
|
|
type: kubernetes
|
|
|
|
|
name: release
|
|
|
|
|
|
|
|
|
|
platform:
|
|
|
|
|
os: linux
|
2022-02-02 20:23:10 +00:00
|
|
|
|
arсh: arm64
|
2022-01-25 21:08:51 +00:00
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: release-helm-chart
|
|
|
|
|
commands:
|
|
|
|
|
- helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek
|
|
|
|
|
- helm package --version ${DRONE_TAG} .
|
2022-02-03 21:22:13 +00:00
|
|
|
|
- helm cm-push ${DRONE_REPO_NAME%-charts}-${DRONE_TAG}.tgz volker.raschek
|
2022-01-25 21:08:51 +00:00
|
|
|
|
environment:
|
|
|
|
|
HELM_REPO_PASSWORD:
|
|
|
|
|
from_secret: helm_repo_password
|
|
|
|
|
HELM_REPO_USERNAME:
|
|
|
|
|
from_secret: helm_repo_username
|
2022-07-23 09:12:57 +00:00
|
|
|
|
image: docker.io/volkerraschek/helm:3.9.2
|
2022-05-21 09:30:27 +00:00
|
|
|
|
resources:
|
|
|
|
|
limits:
|
|
|
|
|
cpu: 150
|
|
|
|
|
memory: 150M
|
2022-01-25 21:08:51 +00:00
|
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
|
event:
|
|
|
|
|
- tag
|
|
|
|
|
repo:
|
|
|
|
|
- volker.raschek/renovate-charts
|