diff options
| author | Paul Buetow <paul@buetow.org> | 2026-02-07 22:35:55 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-02-07 22:35:55 +0200 |
| commit | 440ce43fc30ea09ade4dbc1243713bc13646efe8 (patch) | |
| tree | b52cf6ba3eb53ef1ed96ea3a1d1a3ef44fa6dfa6 | |
| parent | 3a0c2b20412ceae3150359416f69a586c4949bc6 (diff) | |
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 <cursoragent@cursor.com>
| -rw-r--r-- | f3s/argocd-apps/services/pihole.yaml | 5 |
1 files 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 |
