feat(grafana-backuper): move deployment to core-deployments repo
All checks were successful
ci/woodpecker/push/yamllint Pipeline was successful
All checks were successful
ci/woodpecker/push/yamllint Pipeline was successful
This commit is contained in:
parent
b4e877d629
commit
740e2311c2
6 changed files with 184 additions and 2 deletions
58
grafana-backuper/1-cronjob.yaml
Normal file
58
grafana-backuper/1-cronjob.yaml
Normal file
|
@ -0,0 +1,58 @@
|
|||
---
|
||||
apiVersion: batch/v1
|
||||
kind: CronJob
|
||||
metadata:
|
||||
name: grafana-backuper
|
||||
namespace: grafana-backuper
|
||||
spec:
|
||||
schedule: "0 * * * *"
|
||||
successfulJobsHistoryLimit: 1
|
||||
failedJobsHistoryLimit: 3
|
||||
jobTemplate:
|
||||
spec:
|
||||
ttlSecondsAfterFinished: 3600
|
||||
template:
|
||||
spec:
|
||||
containers:
|
||||
- name: grafana-backuper
|
||||
image: git.ar21.de/yolokube/grafana-backuper:latest
|
||||
env:
|
||||
- name: GB_GRAFANA_URL
|
||||
value: "http://prometheus-grafana.prometheus"
|
||||
- name: GB_GRAFANA_TOKEN
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: grafana-secrets
|
||||
key: grafana-auth-token
|
||||
- name: GB_GIT_REPO
|
||||
value: "https://git.ar21.de/yolokube/grafana-dashboards.git"
|
||||
- name: GB_GIT_BRANCH
|
||||
value: "main"
|
||||
- name: GB_GIT_USER
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: git-secrets
|
||||
key: git-user
|
||||
- name: GB_GIT_EMAIL
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: git-secrets
|
||||
key: git-email
|
||||
- name: GB_GIT_PASS
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: git-secrets
|
||||
key: git-pass
|
||||
- name: GB_SIGNING_KEY
|
||||
value: /app/keys/signing-key.asc
|
||||
- name: GB_SEQUENCE
|
||||
value: "backup,restore"
|
||||
volumeMounts:
|
||||
- name: key-volume
|
||||
mountPath: /app/keys
|
||||
imagePullPolicy: IfNotPresent
|
||||
volumes:
|
||||
- name: key-volume
|
||||
secret:
|
||||
secretName: gpg-key
|
||||
restartPolicy: Never
|
Loading…
Add table
Add a link
Reference in a new issue