[bitnami/wordpress] Add support for SANs on certs (#4953)

* Add support for SANs on certs

* Bump chart version

* Use extraHosts instead

* Remove `alternativeHostNames`
This commit is contained in:
黃健毅
2021-01-13 09:34:30 +00:00
committed by GitHub
parent e148b314fc
commit 9bc7515bf0
2 changed files with 4 additions and 1 deletions

View File

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

View File

@@ -47,6 +47,9 @@ spec:
{{- if .Values.ingress.tls }}
- hosts:
- {{ .Values.ingress.hostname }}
{{- range .Values.ingress.extraHosts }}
- {{ .name }}
{{- end }}
secretName: {{ printf "%s-tls" .Values.ingress.hostname }}
{{- end }}
{{- if .Values.ingress.extraTls }}