Skip to content

Commit

Permalink
chore: fix postgres db/host variable references
Browse files Browse the repository at this point in the history
  • Loading branch information
gytis-ivaskevicius committed May 3, 2024
1 parent 129b140 commit fe7dea4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nix/cardano-services/deployments/stake-pool.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
ALLOWED_ORIGINS = values.backend.allowedOrigins;

POSTGRES_POOL_MAX_STAKE_POOL = "10";
POSTGRES_HOST_STAKE_POOL = values.stakepool.databaseName;
POSTGRES_HOST_STAKE_POOL = values.postgresName;
POSTGRES_PORT_STAKE_POOL = "5432";
POSTGRES_DB_STAKE_POOL = values.postgres;
POSTGRES_DB_STAKE_POOL = values.stakepool.databaseName;
POSTGRES_PASSWORD_STAKE_POOL = {
valueFrom.secretKeyRef = {
name = "${values.stakepool.databaseName}-owner-user.${values.postgresName}.credentials.postgresql.acid.zalan.do";
Expand Down

0 comments on commit fe7dea4

Please sign in to comment.