From f9d4a5934ee9410b8de15e5d0557e3e876f94fb1 Mon Sep 17 00:00:00 2001 From: Kanwar Ujjaval Singh <4216199+kanwarujjaval@users.noreply.github.com> Date: Fri, 8 May 2026 18:05:51 +0530 Subject: [PATCH] fix for slash in branch names --- charts/countly-web-ui-canary/templates/_helpers.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/countly-web-ui-canary/templates/_helpers.tpl b/charts/countly-web-ui-canary/templates/_helpers.tpl index 426f42c..df94662 100644 --- a/charts/countly-web-ui-canary/templates/_helpers.tpl +++ b/charts/countly-web-ui-canary/templates/_helpers.tpl @@ -22,7 +22,7 @@ app.kubernetes.io/part-of: countly app.kubernetes.io/managed-by: {{ .Release.Service }} helm.sh/chart: {{ printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" }} countly.io/canary: {{ include "canary.slug" . | quote }} -countly.io/branch: {{ .Values.branch | quote }} +countly.io/branch: {{ .Values.branch | replace "/" "-" | quote }} countly.io/sha: {{ .Values.sha | quote }} {{- end -}}