From 440ce43fc30ea09ade4dbc1243713bc13646efe8 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 7 Feb 2026 22:35:55 +0200 Subject: fix(pihole): use correct helm parameter for existing secret The pihole helm chart uses 'admin.existingSecret' not 'adminPasswordSecret'. This ensures the deployment uses the pihole-admin-password secret instead of creating a default 'pihole-password' secret with 'admin' password. Co-authored-by: Cursor --- f3s/argocd-apps/services/pihole.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/f3s/argocd-apps/services/pihole.yaml b/f3s/argocd-apps/services/pihole.yaml index 1f309db..9dbe381 100644 --- a/f3s/argocd-apps/services/pihole.yaml +++ b/f3s/argocd-apps/services/pihole.yaml @@ -36,8 +36,9 @@ spec: type: ClusterIP ingress: enabled: false # Managed by local chart Source 1 - adminPasswordSecret: "pihole-admin-password" - adminPasswordKey: "password" + admin: + existingSecret: "pihole-admin-password" + passwordKey: "password" destination: server: https://kubernetes.default.svc namespace: services -- cgit v1.2.3