From b3c40dca005177c23b163333e024ced1ba258d5d Mon Sep 17 00:00:00 2001 From: sHa Date: Fri, 20 Mar 2026 19:21:36 +0200 Subject: [PATCH] fix: correct casing of AppVersion in deployment and values files --- helm/templates/deployment.yaml | 2 +- helm/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index 134a11f..6e2a55b 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -16,7 +16,7 @@ spec: spec: containers: - name: {{ .Chart.Name }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.appVersion }}" + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: http diff --git a/helm/values.yaml b/helm/values.yaml index a61fdd7..f80b97b 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -2,7 +2,7 @@ replicaCount: 1 image: repository: ghcr.io/shadoll/redmine-mcp - tag: "" # defaults to Chart.appVersion when empty + tag: "" # defaults to Chart.AppVersion when empty pullPolicy: Always redmine: