You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting up a Kamal project with two accessories: a Postgres database and a Pgbouncer accessory, I ran into a scenario where the Postgres container expects a DB_PASSWORD secret, where the Pgbouncer container expects a POSTGRES_PASSWORD secret.
My current solution is to set both in the secrets file:
DB_PASSWORD=1234
POSTGRES_PASSWORD=1234
Is there any way to expand or rename those secrets in the deploy.yml file such that is not necessary to repeat the same password twice in the secrets file?
The text was updated successfully, but these errors were encountered:
When setting up a Kamal project with two accessories: a Postgres database and a Pgbouncer accessory, I ran into a scenario where the Postgres container expects a
DB_PASSWORD
secret, where the Pgbouncer container expects aPOSTGRES_PASSWORD
secret.My current solution is to set both in the secrets file:
Is there any way to expand or rename those secrets in the deploy.yml file such that is not necessary to repeat the same password twice in the secrets file?
The text was updated successfully, but these errors were encountered: