[bitnami/postgresql] Update README with documentation of required keys for auth secrets (#9670)

* [bitnami/postgresql] Update values.yaml with more detailed documentation on auth secrets

Signed-off-by: shakti-garg <shakti.garg@gmail.com>

* [bitnami/postgresql] regenerate README documentation using readme-generator tool

Signed-off-by: shakti-garg <shakti.garg@gmail.com>

* [bitnami/postgresql] bump up patch version of chart

Signed-off-by: shakti-garg <shakti.garg@gmail.com>
This commit is contained in:
shakti-garg
2022-04-18 15:08:08 +05:30
committed by GitHub
parent 220c243740
commit 2ffbdfffc8
2 changed files with 60 additions and 66 deletions

View File

@@ -113,13 +113,13 @@ auth:
## @param auth.enablePostgresUser Assign a password to the "postgres" admin user. Otherwise, remote access will be blocked for this user
##
enablePostgresUser: true
## @param auth.postgresPassword Password for the "postgres" admin user
## @param auth.postgresPassword Password for the "postgres" admin user. Ignored if `auth.existingSecret` with key `postgres-password` is provided
##
postgresPassword: ""
## @param auth.username Name for a custom user to create
##
username: ""
## @param auth.password Password for the custom user to create
## @param auth.password Password for the custom user to create. Ignored if `auth.existingSecret` with key `password` is provided
##
password: ""
## @param auth.database Name for a custom database to create
@@ -128,16 +128,10 @@ auth:
## @param auth.replicationUsername Name of the replication user
##
replicationUsername: repl_user
## @param auth.replicationPassword Password for the replication user
## @param auth.replicationPassword Password for the replication user. Ignored if `auth.existingSecret` with key `replication-password` is provided
##
replicationPassword: ""
## @param auth.existingSecret Name of existing secret to use for PostgreSQL credentials
## `auth.postgresPassword`, `auth.password`, and `auth.replicationPassword` will be ignored and picked up from this secret
## The secret must contain the keys `postgres-password` (which is the password for "postgres" admin user),
## `password` (which is the password for the custom user to create when `auth.username` is set),
## and `replication-password` (which is the password for replication user).
## The secret might also contains the key `ldap-password` if LDAP is enabled. `ldap.bind_password` will be ignored and
## picked from this secret in this case.
## @param auth.existingSecret Name of existing secret to use for PostgreSQL credentials. The secret must contain the keys `postgres-password` (which is the password for "postgres" admin user), `password` (which is the password for the custom user to create when `auth.username` is set) and `replication-password` (which is the password for replication user). `auth.postgresPassword`, `auth.password`, and `auth.replicationPassword` will be ignored and picked up from this secret. The secret might also contains the key `ldap-password` if LDAP is enabled. `ldap.bind_password` will be ignored and picked from this secret in this case.
## The value is evaluated as a template.
##
existingSecret: ""