Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@ metadata:
namespace: $NAMESPACE
spec:
instances: 1
# The login role derives from $RDBMS_POSTGRESQL_USERNAME so it stays
# self-consistent with the JDBC user the chart connects as (rdbms values +
# the psql-create-db job both use $RDBMS_POSTGRESQL_USERNAME). Previously the
# role was hardcoded `app`, so any value other than `app` failed with
# "password authentication failed for user ...". In CI the var is `app`, so
# this renders identically.
Comment on lines +22 to +23
managed:
roles:
- name: app
- name: $RDBMS_POSTGRESQL_USERNAME
ensure: present
superuser: true
login: true
Expand Down
Loading