You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2023/02/20 01:32:18 UTC

[airflow] branch main updated: Fix bitnami/postgresql default username and password (#29478)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 2d13d04064 Fix bitnami/postgresql default username and password (#29478)
2d13d04064 is described below

commit 2d13d040642bb28ab6d964863fd53c71f84d2d4d
Author: Denis Krivenko <dn...@gmail.com>
AuthorDate: Mon Feb 20 02:32:09 2023 +0100

    Fix bitnami/postgresql default username and password (#29478)
---
 chart/values.schema.json | 4 ++--
 chart/values.yaml        | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/chart/values.schema.json b/chart/values.schema.json
index 9e64448e35..db6d3b3fa9 100644
--- a/chart/values.schema.json
+++ b/chart/values.schema.json
@@ -5196,7 +5196,7 @@
                                 "string",
                                 "null"
                             ],
-                            "default": null
+                            "default": ""
                         },
                         "password": {
                             "description": "Password for the custom user to create.",
@@ -5204,7 +5204,7 @@
                                 "string",
                                 "null"
                             ],
-                            "default": null
+                            "default": ""
                         }
                     }
                 }
diff --git a/chart/values.yaml b/chart/values.yaml
index c9407c7347..46276497e2 100644
--- a/chart/values.yaml
+++ b/chart/values.yaml
@@ -1745,8 +1745,8 @@ postgresql:
   auth:
     enablePostgresUser: true
     postgresPassword: postgres
-    username: ~
-    password: ~
+    username: ""
+    password: ""
 
 # Config settings to go into the mounted airflow.cfg
 #