Merge pull request 'feat(grafana-backuper): move deployment to core-deployments repo' (#379) from tn-add-grafana-backuper into main
All checks were successful
ci/woodpecker/push/yamllint Pipeline was successful
All checks were successful
ci/woodpecker/push/yamllint Pipeline was successful
Reviewed-on: #379
This commit is contained in:
commit
0558cc0599
6 changed files with 184 additions and 2 deletions
|
@ -380,9 +380,9 @@ metadata:
|
||||||
spec:
|
spec:
|
||||||
project: default
|
project: default
|
||||||
source:
|
source:
|
||||||
repoURL: https://git.ar21.de/yolokube/grafana-backuper-deployment.git
|
repoURL: https://git.ar21.de/yolokube/core-deployments.git
|
||||||
targetRevision: HEAD
|
targetRevision: HEAD
|
||||||
path: "overlay"
|
path: grafana-backuper
|
||||||
destination:
|
destination:
|
||||||
server: https://kubernetes.default.svc
|
server: https://kubernetes.default.svc
|
||||||
namespace: grafana-backuper
|
namespace: grafana-backuper
|
||||||
|
|
5
grafana-backuper/0-namespace.yaml
Normal file
5
grafana-backuper/0-namespace.yaml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Namespace
|
||||||
|
metadata:
|
||||||
|
name: grafana-backuper
|
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
|
96
grafana-backuper/2-secret.yaml
Normal file
96
grafana-backuper/2-secret.yaml
Normal file
File diff suppressed because one or more lines are too long
12
grafana-backuper/kustomization.yaml
Normal file
12
grafana-backuper/kustomization.yaml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
generators:
|
||||||
|
- secret-generator.yaml
|
||||||
|
resources:
|
||||||
|
- 0-namespace.yaml
|
||||||
|
- 1-cronjob.yaml
|
||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
images:
|
||||||
|
- name: git.ar21.de/yolokube/grafana-backuper
|
||||||
|
newName: git.ar21.de/yolokube/grafana-backuper
|
||||||
|
newTag: "49"
|
||||||
|
namespace: grafana-backuper
|
11
grafana-backuper/secret-generator.yaml
Normal file
11
grafana-backuper/secret-generator.yaml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
apiVersion: viaduct.ai/v1
|
||||||
|
kind: ksops
|
||||||
|
metadata:
|
||||||
|
name: secret-generator
|
||||||
|
annotations:
|
||||||
|
config.kubernetes.io/function: |
|
||||||
|
exec:
|
||||||
|
path: ksops
|
||||||
|
files:
|
||||||
|
- 2-secret.yaml
|
Loading…
Reference in a new issue