From b50a334cd0c1bac3eb54d53280c8a127276c5bd7 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 28 Sep 2023 10:52:59 +0200 Subject: [PATCH] fix helm chart Signed-off-by: Simon L --- nextcloud-aio-helm-chart/update-helm.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nextcloud-aio-helm-chart/update-helm.sh b/nextcloud-aio-helm-chart/update-helm.sh index 7ef948377a4..b159f5f3b21 100755 --- a/nextcloud-aio-helm-chart/update-helm.sh +++ b/nextcloud-aio-helm-chart/update-helm.sh @@ -42,6 +42,9 @@ sed -i "s|\${NEXTCLOUD_TRUSTED_CACERTS_DIR}:|nextcloud_aio_nextcloud_trusted_cac sed -i 's|\${|{{ .Values.|g' latest.yml sed -i 's|}| }}|g' latest.yml yq -i 'del(.services.[].profiles)' latest.yml +# Delete read_only and tmpfs setting while https://github.com/kubernetes/kubernetes/issues/48912 is not fixed +yq -i 'del(.services.[].read_only)' latest.yml +yq -i 'del(.services.[].tmpfs)' latest.yml cat latest.yml kompose convert -c -f latest.yml --namespace nextcloud-aio-namespace cd latest