2022-10-16 10:12:35 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: linter
|
|
|
|
|
2023-06-17 13:16:08 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2022-10-16 10:12:35 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 13:16:08 +00:00
|
|
|
- name: clone
|
2023-10-01 20:27:07 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 13:16:08 +00:00
|
|
|
|
2022-10-16 10:12:35 +00:00
|
|
|
- name: helm lint
|
|
|
|
commands:
|
|
|
|
- helm lint
|
2024-09-16 16:19:49 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/helm:3.16.1
|
2022-10-16 10:12:35 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 50
|
|
|
|
memory: 50M
|
|
|
|
|
|
|
|
- name: markdown lint
|
|
|
|
commands:
|
|
|
|
- markdownlint *.md
|
2024-10-14 19:21:04 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/markdownlint:0.42.0
|
2022-10-16 10:12:35 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
|
|
|
|
|
|
|
- name: helm template
|
|
|
|
commands:
|
|
|
|
- helm template .
|
2024-09-16 16:19:49 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/helm:3.16.1
|
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
|
2023-10-01 21:20:07 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
2022-10-16 10:12:35 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- tag
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: release
|
|
|
|
|
2023-06-17 13:16:08 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2022-10-16 10:12:35 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 13:16:08 +00:00
|
|
|
- name: clone
|
2023-10-01 20:27:07 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 13:16:08 +00:00
|
|
|
|
2022-10-16 10:12:35 +00:00
|
|
|
- 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
|
2024-09-16 16:19:49 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/helm:3.16.1
|
2022-10-16 10:12:35 +00:00
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpu: 150
|
|
|
|
memory: 150M
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
|
|
|
repo:
|
|
|
|
- volker.raschek/homeassistant-charts
|