From 39cbdc61f6bfc1dcc123bde4260102f5957044fc Mon Sep 17 00:00:00 2001 From: jessebot Date: Wed, 25 Sep 2024 09:25:13 +0200 Subject: [PATCH] Fix: quote nextcloud.objectStore.s3.legacyAuth value when rendering as env var Signed-off-by: jessebot --- charts/nextcloud/Chart.yaml | 2 +- charts/nextcloud/templates/_helpers.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/nextcloud/Chart.yaml b/charts/nextcloud/Chart.yaml index 44a2aee5..e2c42ffb 100644 --- a/charts/nextcloud/Chart.yaml +++ b/charts/nextcloud/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: nextcloud -version: 6.0.2 +version: 6.0.3 appVersion: 30.0.0 description: A file sharing server that puts the control and security of your own data back into your hands. keywords: diff --git a/charts/nextcloud/templates/_helpers.tpl b/charts/nextcloud/templates/_helpers.tpl index f5dcf744..5efea5d1 100644 --- a/charts/nextcloud/templates/_helpers.tpl +++ b/charts/nextcloud/templates/_helpers.tpl @@ -247,7 +247,7 @@ S3 as primary object store env vars value: {{ .Values.nextcloud.objectStore.s3.usePathStyle | quote }} {{- with .Values.nextcloud.objectStore.s3.legacyAuth }} - name: OBJECTSTORE_S3_LEGACYAUTH - value: {{ . }} + value: {{ . | quote }} {{- end }} - name: OBJECTSTORE_S3_AUTOCREATE value: {{ .Values.nextcloud.objectStore.s3.autoCreate | quote }}