Skip to content

Commit

Permalink
fix: allow wildcards on certificate generation
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 committed Oct 15, 2024
1 parent f460889 commit fa274b5
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 @@ -42,11 +42,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 fa274b5

Please # to comment.