Skip to content

Commit

Permalink
fix: allow wildcards on certificate generation (#524)
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Parra Ortega <pedro.parraortega@enreach.com>
  • Loading branch information
ppodevlabs authored Oct 15, 2024
1 parent 233c3f7 commit 67b34ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/capsule-proxy/templates/certmanager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ spec:
dnsNames:
{{- if .Values.ingress.enabled -}}
{{- range $hosts := .Values.ingress.hosts }}
- {{ $hosts.host }}
- {{ $hosts.host | quote }}
{{- end }}
{{- end }}
{{- range $dns := .Values.certManager.certificate.dnsNames }}
- {{ $dns }}
- {{ $dns | quote }}
{{- end }}
{{- if $.Values.certManager.certificate.includeInternalServiceNames }}
- {{ include "capsule-proxy.fullname" . }}
Expand Down

0 comments on commit 67b34ac

Please # to comment.