Unverified Commit 18ac099d authored by Matthew Fisher's avatar Matthew Fisher Committed by GitHub

Merge pull request #3956 from jstoja/support_ingress_wildcard

Add quoting support in ingress to allow wildcard domain
parents 3fb32f79 cf3ded91
......@@ -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 }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment