From baacf24a4db45746a7a46b0480148a21c8ca8099 Mon Sep 17 00:00:00 2001 From: Simon L Date: Wed, 28 Feb 2024 12:01:30 +0100 Subject: [PATCH] helm - put namespace into quotes Signed-off-by: Simon L --- nextcloud-aio-helm-chart/update-helm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextcloud-aio-helm-chart/update-helm.sh b/nextcloud-aio-helm-chart/update-helm.sh index d403cc24653..6fe1c10bc09 100755 --- a/nextcloud-aio-helm-chart/update-helm.sh +++ b/nextcloud-aio-helm-chart/update-helm.sh @@ -160,7 +160,7 @@ for variable in "${DEPLOYMENTS[@]}"; do fi done # shellcheck disable=SC1083 -find ./ -name '*.yaml' -exec sed -i "s|nextcloud-aio-namespace|\{\{ .Values.NAMESPACE \}\}|" \{} \; +find ./ -name '*.yaml' -exec sed -i 's|nextcloud-aio-namespace|"\{\{ .Values.NAMESPACE \}\}"|' \{} \; # shellcheck disable=SC1083 find ./ -name '*service.yaml' -exec sed -i "/^status:/,$ d" \{} \; # shellcheck disable=SC1083