From d6221ccb6ecca4c4da7a0dec533397814fb4b437 Mon Sep 17 00:00:00 2001 From: mayor Date: Thu, 9 Apr 2026 23:35:29 -0400 Subject: [PATCH] fix(helmchart): use literal KOTS template syntax for VersionLabel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaced Helm escape sequences with the literal repl{{ .VersionLabel }} string. helmchart.yaml is a KOTS manifest uploaded directly to Replicated — it is never processed by Helm, so Go template escaping was incorrect and caused a parse error. Co-Authored-By: Claude Sonnet 4.6 --- helmchart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helmchart.yaml b/helmchart.yaml index 1a95840..37d4b2c 100644 --- a/helmchart.yaml +++ b/helmchart.yaml @@ -8,7 +8,7 @@ spec: chartVersion: "" values: image: - tag: repl{{ '{{' }} .VersionLabel {{ '}}' }} + tag: repl{{ .VersionLabel }} global: imagePullSecrets: - name: '{{repl ImagePullSecretName }}'