From ee22eb000caf8649d29d5880f80b9cba2c9e6993 Mon Sep 17 00:00:00 2001 From: Niklas Ye Date: Mon, 21 Sep 2026 21:11:29 +0200 Subject: [PATCH] Set the chart's placeholder version to 0.17.0 Cosmetic, and done anyway for the same reason as 7b9a337, 828cf87 and 8869ac8 before it: .gitea/workflows/release.yaml passes --version and --app-version to `helm package` from the git tag, so neither line decides anything about what is published. Being read is all they do, and a tree heading for v0.17.0 that says 0.16.1 tells its reader something false. appVersion keeps the v, per APPVERSION_PREFIX in .release.conf, and image.tag in values.yaml stays "latest" -- that one is what a local `helm install ./charts/terdut-server` actually pulls. Claude-Session: https://claude.ai/code/session_01RHPj4ggeFdEjKKfm4SHbD7 --- charts/terdut-server/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/terdut-server/Chart.yaml b/charts/terdut-server/Chart.yaml index 3af9820..08983f8 100644 --- a/charts/terdut-server/Chart.yaml +++ b/charts/terdut-server/Chart.yaml @@ -15,5 +15,5 @@ type: application # appVersion and image.tag in values.yaml no longer agree, and that is not an oversight: # image.tag stays "latest", which is what a local install actually pulls. appVersion is # metadata and drives nothing. -version: 0.16.1 -appVersion: "v0.16.1" +version: 0.17.0 +appVersion: "v0.17.0"