From aea7430c2670172840ded7775108b3ed2833fd33 Mon Sep 17 00:00:00 2001 From: larssb Date: Sun, 5 May 2024 22:32:00 +0200 Subject: [PATCH] Remove the whitespace in the join This fixes #26 --- chart/templates/configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chart/templates/configmap.yaml b/chart/templates/configmap.yaml index 8764211..c3a4ab2 100644 --- a/chart/templates/configmap.yaml +++ b/chart/templates/configmap.yaml @@ -4,4 +4,4 @@ metadata: name: {{ include "py-kube-downscaler.name" . }} data: # downscale for non-work hours - EXCLUDE_NAMESPACES: "{{- join ", " .Values.excludedNamespaces }}" + EXCLUDE_NAMESPACES: "{{- join "," .Values.excludedNamespaces }}"