2021-08-22 17:41:23 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: linter
|
|
|
|
|
2023-06-17 13:19:02 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2021-08-22 17:41:23 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 13:19:02 +00:00
|
|
|
- name: clone
|
2023-10-01 20:43:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 13:19:02 +00:00
|
|
|
|
2021-08-22 17:41:23 +00:00
|
|
|
- name: helm lint
|
|
|
|
commands:
|
|
|
|
- helm lint
|
2023-12-14 11:28:03 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/helm:3.13.3
|
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
|
2023-12-09 14:45:25 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/markdownlint:0.38.0
|
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 .
|
2023-12-14 11:28:03 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/helm:3.13.3
|
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:
|
2022-07-26 15:52:07 +00:00
|
|
|
SMTP_FROM_ADDRESS:
|
|
|
|
from_secret: smtp_from_address
|
|
|
|
SMTP_FROM_NAME:
|
|
|
|
from_secret: smtp_from_name
|
|
|
|
SMTP_HOST:
|
2021-08-22 17:41:23 +00:00
|
|
|
from_secret: smtp_host
|
2022-07-26 15:52:07 +00:00
|
|
|
SMTP_USERNAME:
|
2021-08-22 17:41:23 +00:00
|
|
|
from_secret: smtp_username
|
2022-07-26 15:52:07 +00:00
|
|
|
SMTP_PASSWORD:
|
2021-08-22 17:41:23 +00:00
|
|
|
from_secret: smtp_password
|
2023-10-01 21:25:24 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/drone-email:0.1.5
|
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
|
|
|
when:
|
|
|
|
status:
|
|
|
|
- changed
|
|
|
|
- failure
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- tag
|
|
|
|
|
2022-01-25 21:09:36 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: kubernetes
|
|
|
|
name: release
|
|
|
|
|
2023-06-17 13:19:02 +00:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
|
2022-01-25 21:09:36 +00:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
|
|
|
|
steps:
|
2023-06-17 13:19:02 +00:00
|
|
|
- name: clone
|
2023-10-01 20:43:54 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/git:1.3.1
|
2023-06-17 13:19:02 +00:00
|
|
|
|
2022-01-25 21:09:36 +00:00
|
|
|
- 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:16 +00:00
|
|
|
- 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
|
2023-12-14 11:28:03 +00:00
|
|
|
image: git.cryptic.systems/volker.raschek/helm:3.13.3
|
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
|