From e93cd978e8fda19cd6a25eeda148f2b4d1c83ebd Mon Sep 17 00:00:00 2001 From: Victor Login Date: Wed, 21 Jun 2023 16:02:44 +0200 Subject: [PATCH] Update TLS for ingress (#1367) --- helm-chart/templates/11-ingress.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/helm-chart/templates/11-ingress.yaml b/helm-chart/templates/11-ingress.yaml index 518b91a9e..83b3f7737 100644 --- a/helm-chart/templates/11-ingress.yaml +++ b/helm-chart/templates/11-ingress.yaml @@ -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 }}