From 7e335d72a81ec7b475454954009bd2755002e064 Mon Sep 17 00:00:00 2001 From: zhenyus Date: Thu, 31 Jul 2025 23:36:09 +0800 Subject: [PATCH] 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 --- .../helm-pkg/reconciler/templates/_helpers.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freeleaps-devops-reconciler/helm-pkg/reconciler/templates/_helpers.tpl b/freeleaps-devops-reconciler/helm-pkg/reconciler/templates/_helpers.tpl index f6578140..528cd069 100644 --- a/freeleaps-devops-reconciler/helm-pkg/reconciler/templates/_helpers.tpl +++ b/freeleaps-devops-reconciler/helm-pkg/reconciler/templates/_helpers.tpl @@ -65,8 +65,8 @@ Create the name of the service account to use Create the image reference */}} {{- define "freeleaps-devops-reconciler.image" -}} -{{- $tag := .Values.image.tag | default .Chart.AppVersion }} -{{- printf "%s:%s" .Values.image.repository $tag }} +{{- $tag := .Values.reconciler.image.tag | default .Chart.AppVersion }} +{{- printf "%s:%s" .Values.reconciler.image.repository $tag }} {{- end }} {{/*