Skip to content

Commit

Permalink
Merge pull request #1826 from koskev/wireguard_psk_quote
Browse files Browse the repository at this point in the history
Helm chart: Quote wireguard psk to fix config errors
  • Loading branch information
thomasferrandiz authored Nov 23, 2023
2 parents 9fbcf29 + 6d83688 commit 0373f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chart/kube-flannel/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ data:
"ListenPortV6": {{ .Values.flannel.backendPortv6 }},
{{- end }}
{{- if .Values.flannel.psk }}
"PSK": {{ .Values.flannel.psk }},
"PSK": {{ .Values.flannel.psk | quote }},
{{- end }}
{{- if .Values.flannel.mtu }}
"MTU": {{ .Values.flannel.mtu }},
Expand Down

0 comments on commit 0373f88

Please sign in to comment.