Merge pull request #3956 from jstoja/support_ingress_wildcard

Add quoting support in ingress to allow wildcard domain
pull/1929/head
Matthew Fisher 7 years ago committed by GitHub
commit 18ac099dd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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