Skip to content

Commit

Permalink
Update 'database' to 'dbname' in Postgres config
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Nov 28, 2023
1 parent adf8915 commit d52e21d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/matrix/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
config["database"]["args"]["user"] = os.environ["PG_USER"]
with open("/etc/synapse/postgres-password") as fp:
config["database"]["args"]["password"] = fp.read().strip()
config["database"]["args"]["database"] = os.environ["PG_DB"]
config["database"]["args"]["dbname"] = os.environ["PG_DB"]
config["database"]["args"]["host"] = os.environ["PG_HOST"]
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/matrix/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ homeserverConfig:
# Overridden if postgres is enabled
# user:
# password:
# database:
# dbname:
# host:
cp_min: 5
cp_max: 10
Expand Down

0 comments on commit d52e21d

Please sign in to comment.