Add quotes on Ingress Host to allow wildcards
Signed-off-by: nicogl <nicogl@gmail.com>
This commit is contained in:
parent
a915e774a5
commit
3ca2b770a6
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ spec:
|
||||||
rules:
|
rules:
|
||||||
{{- if .Values.server.ingress.hosts }}
|
{{- if .Values.server.ingress.hosts }}
|
||||||
{{- range $host := .Values.server.ingress.hosts }}
|
{{- range $host := .Values.server.ingress.hosts }}
|
||||||
- host: {{ $host }}
|
- host: {{ $host | quote }}
|
||||||
http:
|
http:
|
||||||
paths:
|
paths:
|
||||||
{{- with $extraPaths }}
|
{{- with $extraPaths }}
|
||||||
|
|
Loading…
Reference in a new issue