postgresql-ha: provide defaults for postgresPassword and repmgrPassword due to upstream bug
Some checks failed
generate-chart / generate-chart-publish (push) Has been cancelled

This commit is contained in:
pat-s
2023-07-18 20:06:16 +02:00
parent 75893ad9c6
commit 29c9bbb4bf
2 changed files with 20 additions and 12 deletions

View File

@ -481,10 +481,12 @@ redis-cluster:
## @section postgresql-ha
#
## @param postgresql-ha.enabled Enable postgresql-ha
## @param postgresql-ha.global.postgresql-ha.auth.password Password for the `gitea` user (overrides `auth.password`)
## @param postgresql-ha.global.postgresql-ha.auth.database Name for a custom database to create (overrides `auth.database`)
## @param postgresql-ha.global.postgresql-ha.auth.username Name for a custom user to create (overrides `auth.username`)
## @param postgresql-ha.global.postgresql-ha.service.ports.postgresql-ha postgresql-ha service port (overrides `service.ports.postgresql-ha`)
## @param postgresql-ha.global.postgresql.password Password for the `gitea` user (overrides `auth.password`)
## @param postgresql-ha.global.postgresql.database Name for a custom database to create (overrides `auth.database`)
## @param postgresql-ha.global.postgresql.username Name for a custom user to create (overrides `auth.username`)
## @param postgresql-ha.global.postgresql.postgresPassword Postgres Password
## @param postgresql-ha.global.postgresql.repmgrPassword Repmgr Password
## @param postgresql-ha.service.ports.postgresql postgresql service port (overrides `service.ports.postgresql`)
## @param postgresql-ha.primary.persistence.size PVC Storage Request for postgresql-ha volume
postgresql-ha:
enabled: true
@ -493,6 +495,10 @@ postgresql-ha:
password: gitea
database: gitea
username: gitea
# FIXME: https://github.com/bitnami/charts/issues/17052
postgresPassword: changeme
# FIXME: https://github.com/bitnami/charts/issues/17052
repmgrPassword: changeme
service:
ports:
postgresql: 5432