Skip to content

Commit 958ed86

Browse files
6ixfallsoilbeater
authored andcommitted
fix: double quoting causing nxdomain (#6039)
Signed-off-by: Bryan Lee <me@bryanl.ee> (cherry picked from commit 5262026)
1 parent a009a60 commit 958ed86

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

charts/kube-ovn-v2/templates/pinger/pinger-daemonset.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,12 @@ spec:
8181
{{- else if eq .Values.networking.stack "IPv6" -}}
8282
{{ .Values.pinger.targets.externalAddresses.v6 }}
8383
{{- end }}
84-
- --external-dns=
8584
{{- if eq .Values.networking.stack "Dual" -}}
86-
"{{ .Values.pinger.targets.externalDomain.v6 }}"
85+
- --external-dns={{ .Values.pinger.targets.externalDomain.v6 }}
8786
{{- else if eq .Values.networking.stack "IPv4" -}}
88-
"{{ .Values.pinger.targets.externalDomain.v4 }}"
87+
- --external-dns={{ .Values.pinger.targets.externalDomain.v4 }}
8988
{{- else if eq .Values.networking.stack "IPv6" -}}
90-
"{{ .Values.pinger.targets.externalDomain.v6 }}"
89+
- --external-dns={{ .Values.pinger.targets.externalDomain.v6 }}
9190
{{- end }}
9291
- --ds-namespace={{ .Values.namespace }}
9392
- --logtostderr=false

0 commit comments

Comments
 (0)