From 1cf466def2fe226f592711161983c0fa114909ac Mon Sep 17 00:00:00 2001 From: Christian Adams Date: Fri, 28 Oct 2022 15:54:14 -0400 Subject: [PATCH] Add expected postgres version and usage docs (#1103) --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index dd91bc4e..b64ea2fd 100644 --- a/README.md +++ b/README.md @@ -481,6 +481,12 @@ spec: ### Database Configuration +#### Postgres Version + +The default Postgres version for the version of AWX bundled with the latest version of the awx-operator is Postgres 13. You can find this default for a given version by at the default value for [_postgres_image_version](./roles/installer/defaults/main.yml#L138). + +We only have coverage for the default version of Postgres. Newer versions of Postgres (14+) will likely work, but should only be configured as an external database. If your database is managed by the awx-operator (default if you don't specify a `postgres_configuration_secret`), then you should not override the default version as this may cause issues when awx-operator tries to upgrade your postgresql pod. + #### External PostgreSQL Service To configure AWX to use an external database, the Custom Resource needs to know about the connection details. To do this, create a k8s secret with those connection details and specify the name of the secret as `postgres_configuration_secret` at the CR spec level.