From ea18835a24d63658f9241b95bfa1b65b8e5ba142 Mon Sep 17 00:00:00 2001 From: zhenyus Date: Thu, 31 Jul 2025 23:36:50 +0800 Subject: [PATCH] fix(reconciler): correct image pull policy reference in deployment template - Updated imagePullPolicy reference from .Values.image to .Values.reconciler.image for consistency with recent changes in the Helm chart structure. - Ensures the reconciler deployment uses the correct image pull policy configuration. Signed-off-by: zhenyus --- .../helm-pkg/reconciler/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freeleaps-devops-reconciler/helm-pkg/reconciler/templates/deployment.yaml b/freeleaps-devops-reconciler/helm-pkg/reconciler/templates/deployment.yaml index 2c7be2fb..1a41fda0 100644 --- a/freeleaps-devops-reconciler/helm-pkg/reconciler/templates/deployment.yaml +++ b/freeleaps-devops-reconciler/helm-pkg/reconciler/templates/deployment.yaml @@ -34,7 +34,7 @@ spec: securityContext: {{- toYaml .Values.securityContext | nindent 12 }} image: {{ include "freeleaps-devops-reconciler.image" . }} - imagePullPolicy: {{ .Values.image.pullPolicy }} + imagePullPolicy: {{ .Values.reconciler.image.pullPolicy }} ports: - name: http containerPort: {{ .Values.service.targetPort }}