From 3361caa974e1de17fe3f47c4ad8c4320a7ff432a Mon Sep 17 00:00:00 2001 From: Lars Francke Date: Sat, 8 Aug 2026 11:20:52 +0200 Subject: [PATCH] fix: Honour image.pullSecrets in the CSI provisioner Deployment The Deployment read .Values.imagePullSecrets while the DaemonSet and values.yaml both use .Values.image.pullSecrets. Nothing defines imagePullSecrets, so the provisioner never received pull secrets: on a private registry the node driver starts and the provisioner fails to pull its image. --- .../listener-operator/templates/csi-provisioner-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/helm/listener-operator/templates/csi-provisioner-deployment.yaml b/deploy/helm/listener-operator/templates/csi-provisioner-deployment.yaml index e4d3139b..e4c19e8c 100644 --- a/deploy/helm/listener-operator/templates/csi-provisioner-deployment.yaml +++ b/deploy/helm/listener-operator/templates/csi-provisioner-deployment.yaml @@ -24,7 +24,7 @@ spec: {{- end }} {{- include "operator.selectorLabels" . | nindent 8 }} spec: - {{- with .Values.imagePullSecrets }} + {{- with .Values.image.pullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }}