From d713e5104c33a108ace137604daf9b2ba84865e9 Mon Sep 17 00:00:00 2001 From: klaatu Date: Fri, 27 Mar 2026 13:07:31 +0000 Subject: [PATCH] feat: mount restic-credentials secret into Prometheus --- manifests/monitoring/deployment.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/manifests/monitoring/deployment.yaml b/manifests/monitoring/deployment.yaml index eaf4b4f..46dd010 100644 --- a/manifests/monitoring/deployment.yaml +++ b/manifests/monitoring/deployment.yaml @@ -41,6 +41,9 @@ spec: subPath: alerts.yml - name: prometheus-storage-volume mountPath: /prometheus + - name: restic-credentials + mountPath: /etc/prometheus/secrets/restic + readOnly: true restartPolicy: Always volumes: - name: prometheus-config-values @@ -54,3 +57,6 @@ spec: - name: prometheus-storage-volume persistentVolumeClaim: claimName: prometheus-data + - name: restic-credentials + secret: + secretName: restic-credentials