From 4a87a5cde82392f03ea292123ccf34eff41279ec Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 17 Aug 2023 09:07:11 +0200 Subject: [PATCH] fix update-helm script 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 81fb913d..284e5871 100755 --- a/nextcloud-aio-helm-chart/update-helm.sh +++ b/nextcloud-aio-helm-chart/update-helm.sh @@ -155,7 +155,7 @@ for port in "${INTERNAL_TALK_PORTS[@]}"; do done echo '---' >> /tmp/talk-service.copy # shellcheck disable=SC1083 -find ./ -name '*talk-service.yaml' -exec grep -v '{{ .Values.*}}\|protocol: UDP\|type: LoadBalancer' \{} \; >> /tmp/talk-service.copy +find ./ -name '*talk-service.yaml' -exec grep -v '{{ .Values.TALK*}}\|protocol: UDP\|type: LoadBalancer' \{} \; >> /tmp/talk-service.copy # shellcheck disable=SC1083 find ./ -name '*talk-service.yaml' -exec mv /tmp/talk-service.copy \{} \; # shellcheck disable=SC1083