Update TLS for ingress (#1367)

This commit is contained in:
Victor Login 2023-06-21 16:02:44 +02:00 committed by GitHub
parent bada6dae68
commit e93cd978e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,14 @@ spec:
number: 80
path: /()(.*)
pathType: Prefix
tls: {{ .Values.tap.ingress.tls | toYaml }}
tls:
{{- range .Values.tap.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
status:
loadBalancer: {}
{{- end }}