From 45a55f0cd96ec475367f64737b2b6481084714fd Mon Sep 17 00:00:00 2001 From: Thibault VINCENT Date: Wed, 18 Mar 2026 16:03:59 +0100 Subject: [PATCH] fix(helm): extraVolumeMounts omitted if webConfiguration not set --- .../charts/x509-certificate-exporter/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/charts/x509-certificate-exporter/templates/deployment.yaml b/deploy/charts/x509-certificate-exporter/templates/deployment.yaml index c497247..0cba1e9 100644 --- a/deploy/charts/x509-certificate-exporter/templates/deployment.yaml +++ b/deploy/charts/x509-certificate-exporter/templates/deployment.yaml @@ -87,7 +87,7 @@ spec: {{- end }} image: {{ include "x509-certificate-exporter.image" . }} imagePullPolicy: {{ .Values.image.pullPolicy }} - {{- if or $extraVolumes .Values.webConfiguration .Values.webConfigurationExistingSecret }} + {{- if or $extraVolumeMounts .Values.webConfiguration .Values.webConfigurationExistingSecret }} volumeMounts: {{- range $extraVolumeMounts }} - {{ tpl (. | toYaml) $ | indent 10 | trim }}