Skip to content

PostgreSQL chart configuration (without HA support)

bitnami/postgresql chart is used as a database for Waldur.

Add bitnami repo to helm:

1
  helm repo add bitnami https://charts.bitnami.com/bitnami

Install postgresql release:

1
  helm install postgresql bitnami/postgresql --version 11.9.1 -f postgresql-values.yaml

NB: the value postgresql.HAEnabled for waldur release must be false.

Chart configuration

You can change default PostgreSQL config with the following variables in postgresql-values.yaml:

  1. postgresqlDatabase - name of a database. NB: must match postgresql.database value in waldur/values.yaml
  2. postgresqlUsername - name of a database user. NB: must match postgresql.username value in waldur/values.yaml
  3. postgresqlPassword - password of a database user
  4. persistence.size - size of a database
  5. image.tag - tag of PostgreSQL image. Possible tags for default image can be found here
  6. image.registry - registry of PostgreSQL image.

More information related to possible values here.


Last update: 2023-04-11