From a93d1f25c49dfc46050cda9ba488e537ac4585ba Mon Sep 17 00:00:00 2001 From: netanelC Date: Wed, 15 Apr 2026 08:15:20 +0300 Subject: [PATCH] helm: fix ca --- helm/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index b0262f7..0c07141 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -91,7 +91,7 @@ spec: - name: REQUESTS_CA_BUNDLE value: {{ printf "%s/%s" .Values.ca.path .Values.ca.key | quote }} - name: NODE_EXTRA_CA_CERTS - value: {{ printf "[%s/%s]" .Values.ca.path .Values.ca.key | quote }} + value: {{ printf "%s/%s" .Values.ca.path .Values.ca.key | quote }} {{- end }} {{- if .Values.extraEnvVars }} {{- toYaml .Values.extraEnvVars | nindent 12 }}