fix(reconciler): update image reference in Helm chart helper template

- Changed image reference keys from .Values.image to .Values.reconciler.image for consistency with recent restructuring.
- Ensures correct image configuration is utilized in the reconciler templates.

Signed-off-by: zhenyus <zhenyus@mathmast.com>
This commit is contained in:
zhenyus 2025-07-31 23:36:09 +08:00
parent bb805a1e25
commit 7e335d72a8

View File

@ -65,8 +65,8 @@ Create the name of the service account to use
Create the image reference Create the image reference
*/}} */}}
{{- define "freeleaps-devops-reconciler.image" -}} {{- define "freeleaps-devops-reconciler.image" -}}
{{- $tag := .Values.image.tag | default .Chart.AppVersion }} {{- $tag := .Values.reconciler.image.tag | default .Chart.AppVersion }}
{{- printf "%s:%s" .Values.image.repository $tag }} {{- printf "%s:%s" .Values.reconciler.image.repository $tag }}
{{- end }} {{- end }}
{{/* {{/*