2022-10-16 10:12:35 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: linter
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: helm lint
|
|
|
|
commands:
|
|
|
|
- helm lint
|
2023-03-09 08:13:14 +00:00
|
|
|
image: docker.io/volkerraschek/helm:3.11.2
|
2022-10-16 10:12:35 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 50
|
|
|
|
memory: 50M
|
|
|
|
|
|
|
|
- name: markdown lint
|
|
|
|
commands:
|
|
|
|
- markdownlint *.md
|
2023-01-07 18:57:36 +00:00
|
|
|
image: docker.io/volkerraschek/markdownlint:0.33.0
|
2022-10-16 10:12:35 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
|
|
|
|
|
|
|
- name: helm template
|
|
|
|
commands:
|
|
|
|
- helm template .
|
2023-03-09 08:13:14 +00:00
|
|
|
image: docker.io/volkerraschek/helm:3.11.2
|
2022-10-16 10:12:35 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
|
|
|
|
|
|
|
- name: email-notification
|
|
|
|
environment:
|
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
|
|
|
from_secret: smtp_host
|
|
|
|
SMTP_USERNAME:
|
|
|
|
from_secret: smtp_username
|
|
|
|
SMTP_PASSWORD:
|
|
|
|
from_secret: smtp_password
|
|
|
|
image: docker.io/volkerraschek/drone-email:0.1.1
|
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- tag
|
|
|
|
|
|
|
|
---
|
|
|
|
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
|
|
|
|
environment:
|
|
|
|
HELM_REPO_PASSWORD:
|
|
|
|
from_secret: helm_repo_password
|
|
|
|
HELM_REPO_USERNAME:
|
|
|
|
from_secret: helm_repo_username
|
2023-03-09 08:13:14 +00:00
|
|
|
image: docker.io/volkerraschek/helm:3.11.2
|
2022-10-16 10:12:35 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
repo:
|
|
|
|
- volker.raschek/homeassistant-charts
|