From 130e19a33f7f6489243cb71eb00446d383664236 Mon Sep 17 00:00:00 2001 From: WrenIX Date: Mon, 5 Feb 2024 12:36:04 +0100 Subject: [PATCH] fix(hooks): configmap does not need base64 encoding Signed-off-by: WrenIX --- charts/nextcloud/Chart.yaml | 2 +- charts/nextcloud/templates/configmap-hooks.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/nextcloud/Chart.yaml b/charts/nextcloud/Chart.yaml index 2a66956b..11b238bb 100644 --- a/charts/nextcloud/Chart.yaml +++ b/charts/nextcloud/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: nextcloud -version: 4.6.0 +version: 4.6.1 appVersion: 28.0.2 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/configmap-hooks.yaml b/charts/nextcloud/templates/configmap-hooks.yaml index 76f40c74..9e963d52 100644 --- a/charts/nextcloud/templates/configmap-hooks.yaml +++ b/charts/nextcloud/templates/configmap-hooks.yaml @@ -12,7 +12,7 @@ metadata: data: {{- range $hook, $shell := .Values.nextcloud.hooks }} {{- if $shell }} - {{ $hook }}.sh: {{ $shell | b64enc }} + {{ $hook }}.sh: {{ $shell | quote }} {{- end }} {{- end }} {{- end }}