From a613603f1ebf0848be8e3fcd1f4470e296b5733d Mon Sep 17 00:00:00 2001 From: Andreas Geissler Date: Thu, 12 Dec 2024 16:53:39 +0100 Subject: [POLICY] Fix default settings in values.yaml Enable local Postgres instance as default DB. Issue-ID: POLICY-5166 Change-Id: I5ba458548e3bee5cd6d3df2cf9b334af9b8da78f Signed-off-by: Andreas Geissler --- kubernetes/policy/values.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kubernetes/policy/values.yaml b/kubernetes/policy/values.yaml index 6cd26dd359..2fd3c32878 100644 --- a/kubernetes/policy/values.yaml +++ b/kubernetes/policy/values.yaml @@ -20,13 +20,13 @@ ################################################################# global: mariadbGalera: - useInPolicy: true + useInPolicy: false localCluster: true # flag to enable the DB creation via mariadb-operator useOperator: false # if useOperator set to "true", set "enableServiceAccount to "false" # as the SA is created by the Operator - enableServiceAccount: false + enableServiceAccount: true # '&mariadbConfig' means we "store" the values for later use in the file # with '*mariadbConfig' pointer. config: &mariadbConfig @@ -38,8 +38,8 @@ global: #userRootSecret: prometheusEnabled: false postgres: - useInPolicy: false - localCluster: false + useInPolicy: true + localCluster: true # flag to enable the DB creation via pgo-operator useOperator: false service: -- cgit 1.2.3-korg