prometheus-postgres-exporter/.drone.yml

209 lines
3.7 KiB
YAML
Raw Permalink Normal View History

2024-11-25 16:51:56 +00:00
---
kind: pipeline
type: kubernetes
2024-11-25 17:09:52 +00:00
name: Linters
2024-11-25 16:51:56 +00:00
clone:
disable: true
platform:
os: linux
arch: amd64
steps:
2024-11-25 17:09:52 +00:00
- name: clone repository
image: git.cryptic.systems/volker.raschek/git:1.4.0
2024-11-25 16:51:56 +00:00
- name: helm lint
commands:
- helm lint
image: git.cryptic.systems/volker.raschek/helm:3.16.1
resources:
limits:
cpu: 150
memory: 150M
- name: markdown lint
commands:
- markdownlint *.md
image: git.cryptic.systems/volker.raschek/markdownlint:0.42.0
2024-11-25 16:51:56 +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: git.cryptic.systems/volker.raschek/drone-email:0.1.5
resources:
limits:
cpu: 150
memory: 150M
when:
status:
- changed
- failure
trigger:
event:
exclude:
- tag
---
kind: pipeline
type: kubernetes
2024-11-25 17:09:52 +00:00
name: Unit tests
clone:
disable: true
platform:
os: linux
arch: amd64
steps:
2024-11-25 17:09:52 +00:00
- name: clone repository
image: git.cryptic.systems/volker.raschek/git:1.4.0
- name: helm unittest
2024-11-25 16:51:56 +00:00
commands:
- helm unittest --strict --file 'unittests/**/*.yaml' ./
2024-11-25 16:51:56 +00:00
image: git.cryptic.systems/volker.raschek/helm:3.16.1
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: git.cryptic.systems/volker.raschek/drone-email:0.1.5
resources:
limits:
cpu: 150
memory: 150M
when:
status:
- changed
- failure
trigger:
event:
exclude:
- tag
---
kind: pipeline
type: kubernetes
2024-11-25 17:09:52 +00:00
name: Generate README.md
clone:
disable: true
platform:
os: linux
arch: amd64
steps:
2024-11-25 17:09:52 +00:00
- name: clone repository
image: git.cryptic.systems/volker.raschek/git:1.4.0
2024-11-25 17:03:14 +00:00
- name: generate README
commands:
- npm install
- npm run readme:parameters
- npm run readme:lint
image: docker.io/library/node:23.3.0-alpine
2024-11-25 17:03:14 +00:00
resources:
limits:
cpu: 150
memory: 150M
- name: detect diff
commands:
- git diff --exit-code --name-only README.md
image: git.cryptic.systems/volker.raschek/git:1.4.0
2024-11-25 16:51:56 +00:00
- 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: git.cryptic.systems/volker.raschek/drone-email:0.1.5
resources:
limits:
cpu: 150
memory: 150M
when:
status:
- changed
- failure
trigger:
event:
exclude:
- tag
---
kind: pipeline
type: kubernetes
2024-11-25 17:09:52 +00:00
name: Release
2024-11-25 16:51:56 +00:00
clone:
disable: true
platform:
os: linux
steps:
2024-11-25 17:09:52 +00:00
- name: clone repository
image: git.cryptic.systems/volker.raschek/git:1.4.0
2024-11-25 16:51:56 +00:00
- name: release-helm-chart
commands:
2024-11-25 18:00:59 +00:00
- helm repo add prometheus-exporters https://charts.cryptic.systems/prometheus-exporters
2024-11-25 16:51:56 +00:00
- helm package --version ${DRONE_TAG} .
2024-11-25 17:48:31 +00:00
- helm cm-push ${DRONE_REPO_NAME}-${DRONE_TAG}.tgz prometheus-exporters
2024-11-25 16:51:56 +00:00
environment:
HELM_REPO_PASSWORD:
from_secret: helm_repo_password
HELM_REPO_USERNAME:
from_secret: helm_repo_username
image: git.cryptic.systems/volker.raschek/helm:3.16.1
resources:
limits:
cpu: 150
memory: 150M
trigger:
event:
- tag
repo:
- volker.raschek/prometheus-postgres-exporter