Add quoting support in ingress to allow wildcard domain

pull/3956/head
Julien Bordellier 7 years ago
parent d502f7c8a8
commit cf3ded91f2

@ -143,14 +143,14 @@ spec:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: {{ . }}
- host: {{ . | quote }}
http:
paths:
- path: {{ $ingressPath }}

Loading…
Cancel
Save