diff --git a/charts/stable/pihole/Chart.yaml b/charts/stable/pihole/Chart.yaml index 8816d1dc7d7..6d795442223 100644 --- a/charts/stable/pihole/Chart.yaml +++ b/charts/stable/pihole/Chart.yaml @@ -1,7 +1,7 @@ kubeVersion: ">=1.24.0-0" apiVersion: v2 name: pihole -version: 13.0.0 +version: 13.0.1 appVersion: 2023.11.0 description: DNS and Ad-filtering for your network home: https://truecharts.org/charts/stable/pihole diff --git a/charts/stable/pihole/templates/_configmap.tpl b/charts/stable/pihole/templates/_configmap.tpl index d39976e9e89..e2d62dd488d 100644 --- a/charts/stable/pihole/templates/_configmap.tpl +++ b/charts/stable/pihole/templates/_configmap.tpl @@ -4,7 +4,7 @@ configmap: pihole-env: enabled: true data: - WEBPASSWORD: {{ .Values.pihole.webPassword | squote }} + WEBPASSWORD: {{ .Values.pihole.webPassword | quote }} {{- with .Values.pihole.dnsServers }} {{- if gt (len .) 2 -}} {{- fail (printf "Pihole - Expected max 2 DNS Servers. But got [%v]" (len .)) -}} diff --git a/charts/stable/pihole/values.yaml b/charts/stable/pihole/values.yaml index 6ccefd04ab5..c4edd5db39c 100644 --- a/charts/stable/pihole/values.yaml +++ b/charts/stable/pihole/values.yaml @@ -3,7 +3,7 @@ image: pullPolicy: IfNotPresent tag: 2023.11.0@sha256:24b1ef8f66d810faffefdb9b66850bbe2d55013506b892605acef414e210edeb pihole: - webPassword: "somepassword" + webPassword: somepassword" dnsServers: - "9.9.9.9" - "149.112.112.112"