chore(ci): move to woodpecker
All checks were successful
ci/woodpecker/push/deploy Pipeline was successful
All checks were successful
ci/woodpecker/push/deploy Pipeline was successful
This commit is contained in:
parent
64b03917ec
commit
25fc7b4122
4 changed files with 28 additions and 56 deletions
53
.drone.yml
53
.drone.yml
|
@ -1,53 +0,0 @@
|
||||||
kind: pipeline
|
|
||||||
name: deploy
|
|
||||||
steps:
|
|
||||||
- name: kustomize build
|
|
||||||
image: git.ar21.de/aaron/kustomize-ci
|
|
||||||
commands:
|
|
||||||
- cd /source-repo
|
|
||||||
- git clone https://git.ar21.de/yolokube/fail2ban-prometheus-exporter.git .
|
|
||||||
- cd /deployment-repo
|
|
||||||
- git clone https://git.ar21.de/yolokube/fail2ban-exporter-deployment.git .
|
|
||||||
- rm -r /deployment-repo/deploy/* || true
|
|
||||||
- cp -rv /source-repo/deploy /deployment-repo/base
|
|
||||||
- mkdir -p /deployment-repo/deploy
|
|
||||||
- kustomize build -o /deployment-repo/deploy/fail2ban-exporter.yaml
|
|
||||||
- rm -r /deployment-repo/base
|
|
||||||
volumes:
|
|
||||||
- name: deployment-repo
|
|
||||||
path: /deployment-repo
|
|
||||||
- name: source-repo
|
|
||||||
path: /source-repo
|
|
||||||
when:
|
|
||||||
branch:
|
|
||||||
- main
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- name: kustomize push changes
|
|
||||||
image: appleboy/drone-git-push
|
|
||||||
settings:
|
|
||||||
branch: main
|
|
||||||
remote: ssh://git@git.ar21.de:2222/yolokube/fail2ban-exporter-deployment.git
|
|
||||||
path: /deployment-repo
|
|
||||||
force: false
|
|
||||||
commit: true
|
|
||||||
commit_message: "KUSTOMIZE BUILD: build fail2ban-exporter deployment with kustomize ${DRONE_BUILD_NUMBER} (done automagically via Drone pipeline) [CI SKIP]"
|
|
||||||
ssh_key:
|
|
||||||
from_secret: GITEA_SSH_KEY
|
|
||||||
volumes:
|
|
||||||
- name: deployment-repo
|
|
||||||
path: /deployment-repo
|
|
||||||
when:
|
|
||||||
branch:
|
|
||||||
- main
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
volumes:
|
|
||||||
- name: deployment-repo
|
|
||||||
temp: {}
|
|
||||||
- name: source-repo
|
|
||||||
temp: {}
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
exclude:
|
|
||||||
- pull_request
|
|
25
.woodpecker/.deploy.yaml
Normal file
25
.woodpecker/.deploy.yaml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
steps:
|
||||||
|
- name: kustomize build
|
||||||
|
image: git.ar21.de/aaron/kustomize-ci
|
||||||
|
commands:
|
||||||
|
- mv deploy base
|
||||||
|
- mkdir -p deploy
|
||||||
|
- kustomize build -o deploy/fail2ban-exporter.yaml
|
||||||
|
- rm -r base
|
||||||
|
when:
|
||||||
|
- branch: main
|
||||||
|
event: push
|
||||||
|
- name: kustomize push changes
|
||||||
|
image: appleboy/drone-git-push
|
||||||
|
settings:
|
||||||
|
branch: main
|
||||||
|
remote: ssh://git@git.ar21.de:2222/yolokube/fail2ban-exporter-deployment.git
|
||||||
|
path: .
|
||||||
|
force: false
|
||||||
|
commit: true
|
||||||
|
commit_message: "KUSTOMIZE BUILD: build fail2ban-exporter deployment with kustomize ${CI_PIPELINE_NUMBER} (done automagically via Woodpecker pipeline) [CI SKIP]"
|
||||||
|
ssh_key:
|
||||||
|
from_secret: FORGEJO_SSH_KEY
|
||||||
|
when:
|
||||||
|
- branch: main
|
||||||
|
event: push
|
|
@ -1,3 +1,3 @@
|
||||||
[![Build Status](https://drone.ar21.de/api/badges/yolokube/fail2ban-exporter-deployment/status.svg)](https://drone.ar21.de/yolokube/fail2ban-exporter-deployment)
|
[![Build Status](https://woodpecker.ar21.de/api/badges/6/status.svg)](https://woodpecker.ar21.de/repos/6)
|
||||||
|
|
||||||
# Do not edit anything in the "deploy" folder manually
|
# Do not edit anything in the "deploy" folder manually
|
|
@ -1,5 +1,5 @@
|
||||||
resources:
|
resources:
|
||||||
- ./base
|
- ./base/fail2ban-exporter.yaml
|
||||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
kind: Kustomization
|
kind: Kustomization
|
||||||
images:
|
images:
|
||||||
|
|
Reference in a new issue