From d938c96a76893fa2bee29b71fdac9f1eb4e11f81 Mon Sep 17 00:00:00 2001 From: Fabrice Flore-Thebault Date: Mon, 14 Jan 2019 17:03:27 +0100 Subject: [PATCH 1/2] pg_password should be random 10 character alphanumeric string, when postgresql is running on kubernetes Signed-off-by: Fabrice Flore-Thebault --- installer/inventory | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/inventory b/installer/inventory index 0e3d94caca..d28f2a0b8c 100644 --- a/installer/inventory +++ b/installer/inventory @@ -64,6 +64,7 @@ docker_compose_dir=/var/lib/awx # a new postgres service will be created # pg_hostname=postgresql pg_username=awx +# password should be random 10 character alphanumeric string, when postgresql is running on kubernetes pg_password=awxpass pg_database=awx pg_port=5432 From b6c30e8ef55e1d1d5bfe0c0f5a59619521bab9d9 Mon Sep 17 00:00:00 2001 From: Fabrice Flore-Thebault Date: Mon, 14 Jan 2019 17:17:40 +0100 Subject: [PATCH 2/2] it's a limitation of the official postgres helm chart Signed-off-by: Fabrice Flore-Thebault --- installer/inventory | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installer/inventory b/installer/inventory index d28f2a0b8c..eca746c80b 100644 --- a/installer/inventory +++ b/installer/inventory @@ -64,7 +64,8 @@ docker_compose_dir=/var/lib/awx # a new postgres service will be created # pg_hostname=postgresql pg_username=awx -# password should be random 10 character alphanumeric string, when postgresql is running on kubernetes +# pg_password should be random 10 character alphanumeric string, when postgresql is running on kubernetes +# NB: it's a limitation of the "official" postgres helm chart pg_password=awxpass pg_database=awx pg_port=5432