From e3eb37965c71746649f21880f55ecd4160a1c891 Mon Sep 17 00:00:00 2001 From: Nicholas Lim <41175730+nicholaslimck@users.noreply.github.com> Date: Thu, 7 Jul 2022 09:17:15 +0800 Subject: [PATCH] Fix postgresql configuration Prior postgresql default settings did not actually apply anything to the subchart. Fixed according to https://github.com/bitnami/charts/blob/master/bitnami/postgresql/values.yaml --- charts/stable/teedy/values.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/charts/stable/teedy/values.yaml b/charts/stable/teedy/values.yaml index a158adf2..29ea6c70 100644 --- a/charts/stable/teedy/values.yaml +++ b/charts/stable/teedy/values.yaml @@ -68,9 +68,10 @@ persistence: # @default -- See values.yaml postgresql: enabled: false - postgresqlUsername: teedyuser - postgresqlPassword: teedypassword - postgresqlDatabase: teedydb - persistence: - enabled: false - # storageClass: "" + auth: + username: teedyuser + password: teedypassword + database: teedydb + primary: + persistence: + enabled: false