From f4b313a2ec1aeec3ed2af3f1f54e2c8622f44c9b Mon Sep 17 00:00:00 2001 From: Emilien Devos <121870973+edevosc2c@users.noreply.github.com> Date: Thu, 18 Apr 2024 14:01:23 +0200 Subject: [PATCH] do not force the user and password for the configured pgbouncer database --- pgbouncer/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgbouncer/templates/deployment.yaml b/pgbouncer/templates/deployment.yaml index dc24f8f..b2b5ac8 100644 --- a/pgbouncer/templates/deployment.yaml +++ b/pgbouncer/templates/deployment.yaml @@ -82,7 +82,7 @@ spec: then for db_name in /etc/secrets-db/*; do cd $db_name - echo "$(cat dbname) = host={{ .Values.config.postgresql.host }} port={{ .Values.config.postgresql.port }} dbname=$(cat dbname) user=$(cat user) password=$(cat password)" >> /opt/bitnami/pgbouncer/conf/databases.txt + echo "$(cat dbname) = host={{ .Values.config.postgresql.host }} port={{ .Values.config.postgresql.port }} dbname=$(cat dbname)" >> /opt/bitnami/pgbouncer/conf/databases.txt done; fi; kill -1 1