From 208b6dd2c61a4e5e5b4862db74a08f3f28c2f3b4 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Fri, 17 Jul 2026 20:33:11 +0200 Subject: [PATCH] fix(ci): remove droneci.yaml --- .drone.yml | 106 ----------------------------------------------------- 1 file changed, 106 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 679fa0e..0000000 --- a/.drone.yml +++ /dev/null @@ -1,106 +0,0 @@ ---- -kind: pipeline -type: kubernetes -name: linter - -clone: - disable: true - -platform: - os: linux - arch: amd64 - -steps: -- name: clone - image: git.cryptic.systems/volker.raschek/git:1.4.0 - -- name: helm lint - commands: - - helm lint - image: git.cryptic.systems/volker.raschek/helm:3.18.5 - resources: - limits: - cpu: 150 - memory: 150M - -- name: markdown lint - commands: - - markdownlint *.md - image: git.cryptic.systems/volker.raschek/markdownlint:0.45.0 - resources: - limits: - cpu: 150 - memory: 150M - -- name: helm template - commands: - - helm template . - image: git.cryptic.systems/volker.raschek/helm:3.18.5 - 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.2.0 - resources: - limits: - cpu: 150 - memory: 150M - when: - status: - - changed - - failure - -trigger: - event: - exclude: - - tag - ---- -kind: pipeline -type: kubernetes -name: release - -clone: - disable: true - -platform: - os: linux - -steps: -- name: clone - image: git.cryptic.systems/volker.raschek/git:1.4.0 - -- 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 - image: git.cryptic.systems/volker.raschek/helm:3.18.5 - resources: - limits: - cpu: 150 - memory: 150M - -trigger: - event: - - tag - repo: - - volker.raschek/roundcube-charts