[bitnami/wordpress] Fix issue with wildcard ingress hosts (#4844)

* Fix issue with wildcard ingress hosts

* Use the quote function
This commit is contained in:
Alejandro Moreno
2020-12-30 11:10:04 +01:00
committed by GitHub
parent 0ca550ada5
commit f80074c6b7
2 changed files with 2 additions and 2 deletions

View File

@@ -31,4 +31,4 @@ name: wordpress
sources:
- https://github.com/bitnami/bitnami-docker-wordpress
- http://www.wordpress.com/
version: 10.1.5
version: 10.1.6

View File

@@ -32,7 +32,7 @@ spec:
servicePort: http
{{- end }}
{{- range .Values.ingress.extraHosts }}
- host: {{ .name }}
- host: {{ .name | quote }}
http:
paths:
- path: {{ default "/" .path }}