From 15fc2e7800e05dc7faf88aa34fdaff1f1b42cf00 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Tue, 26 Dec 2023 19:44:54 +0100 Subject: [PATCH] fix(homepage): temproary fix due to common rendering issue Signed-off-by: Kjeld Schouten --- charts/stable/homepage/values.yaml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/charts/stable/homepage/values.yaml b/charts/stable/homepage/values.yaml index e2df995ca11..51d352739c8 100644 --- a/charts/stable/homepage/values.yaml +++ b/charts/stable/homepage/values.yaml @@ -9,7 +9,7 @@ workload: automountServiceAccountToken: true initContainers: init-config: - enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}" + enabled: true type: init imageSelector: alpineImage command: @@ -71,7 +71,7 @@ persistence: objectName: config bookmarks-config: # Only enable when not using homepageConfig - enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}" + enabled: true mountPath: /dummy-config/bookmarks.yaml subPath: bookmarks.yaml readOnly: true @@ -82,7 +82,7 @@ persistence: init-config: {} force-bookmarks-config: # Only enable when not using homepageConfig - enabled: "{{ .Values.forceConfigFromValues }}" + enabled: false mountPath: /app/config/bookmarks.yaml subPath: bookmarks.yaml readOnly: true @@ -90,7 +90,7 @@ persistence: objectName: config settings-config: # Only enable when not using homepageConfig - enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}" + enabled: true mountPath: /dummy-config/settings.yaml subPath: settings.yaml readOnly: true @@ -101,7 +101,7 @@ persistence: init-config: {} force-settings-config: # Only enable when not using homepageConfig - enabled: "{{ .Values.forceConfigFromValues }}" + enabled: false mountPath: /app/config/settings.yaml subPath: settings.yaml readOnly: true @@ -109,7 +109,7 @@ persistence: objectName: config services-config: # Only enable when not using homepageConfig - enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}" + enabled: true mountPath: /dummy-config/services.yaml subPath: services.yaml readOnly: true @@ -120,7 +120,7 @@ persistence: init-config: {} force-services-config: # Only enable when not using homepageConfig - enabled: "{{ .Values.forceConfigFromValues }}" + enabled: false mountPath: /app/services/services.yaml subPath: services.yaml readOnly: true @@ -128,7 +128,7 @@ persistence: objectName: config widgets-config: # Only enable when not using homepageConfig - enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}" + enabled: true mountPath: /dummy-config/widgets.yaml subPath: widgets.yaml readOnly: true @@ -139,7 +139,7 @@ persistence: init-config: {} force-widgets-config: # Only enable when not using homepageConfig - enabled: "{{ .Values.forceConfigFromValues }}" + enabled: false mountPath: /app/config/widgets.yaml subPath: widgets.yaml readOnly: true @@ -147,7 +147,7 @@ persistence: objectName: config custom-css-config: # Only enable when not using homepageConfig - enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}" + enabled: true mountPath: /dummy-config/custom.css subPath: custom.css readOnly: true @@ -158,7 +158,7 @@ persistence: init-config: {} force-custom-css-config: # Only enable when not using homepageConfig - enabled: "{{ .Values.forceConfigFromValues }}" + enabled: false mountPath: /app/config/custom.css subPath: custom.css readOnly: true @@ -166,7 +166,7 @@ persistence: objectName: config custom-js-config: # Only enable when not using homepageConfig - enabled: "{{ if not .Values.forceConfigFromValues}}true{{ else }}false{{ end }}" + enabled: true mountPath: /dummy-config/custom.js subPath: custom.js readOnly: true @@ -177,7 +177,7 @@ persistence: init-config: {} force-custom-js-config: # Only enable when not using homepageConfig - enabled: "{{ .Values.forceConfigFromValues }}" + enabled: false mountPath: /app/config/custom.js subPath: custom.js readOnly: true