Skip to content

Commit 67b34ac

Browse files
authored
fix: allow wildcards on certificate generation (#524)
Signed-off-by: Pedro Parra Ortega <[email protected]>
1 parent 233c3f7 commit 67b34ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

charts/capsule-proxy/templates/certmanager.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ spec:
4646
dnsNames:
4747
{{- if .Values.ingress.enabled -}}
4848
{{- range $hosts := .Values.ingress.hosts }}
49-
- {{ $hosts.host }}
49+
- {{ $hosts.host | quote }}
5050
{{- end }}
5151
{{- end }}
5252
{{- range $dns := .Values.certManager.certificate.dnsNames }}
53-
- {{ $dns }}
53+
- {{ $dns | quote }}
5454
{{- end }}
5555
{{- if $.Values.certManager.certificate.includeInternalServiceNames }}
5656
- {{ include "capsule-proxy.fullname" . }}

0 commit comments

Comments
 (0)