From b8bc8af883bffc404b6ac0dce9a02287ab1080ff Mon Sep 17 00:00:00 2001 From: Seth Call Date: Sun, 20 Jul 2025 21:40:54 -0500 Subject: [PATCH] Add monitoring basic secret --- .../templates/monitoring-basic-auth-secret.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 k8s/monitoring/templates/monitoring-basic-auth-secret.yaml diff --git a/k8s/monitoring/templates/monitoring-basic-auth-secret.yaml b/k8s/monitoring/templates/monitoring-basic-auth-secret.yaml new file mode 100644 index 0000000..6188796 --- /dev/null +++ b/k8s/monitoring/templates/monitoring-basic-auth-secret.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: Secret +metadata: + name: monitoring-basic-auth # This name must match `nginx.ingress.kubernetes.io/auth-secret` + namespace: {{ .Release.Namespace }} # Use Helm template to get the current namespace +type: Opaque +stringData: + auth: jamjam:$apr1$ZEbs0LqW$qfwNJi5YdhN1OlJ4veSHY1 \ No newline at end of file