Add quoting support in ingress to allow wildcard domain

pull/4207/head
Julien Bordellier 8 years ago committed by Sebastien Plisson
parent 126a0a5e08
commit 054b4c9ba2

@ -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