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 <zhenyus@mathmast.com>
This commit is contained in:
zhenyus 2025-07-31 23:36:50 +08:00
parent 7e335d72a8
commit ea18835a24

View File

@ -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 }}