Skip to content

Commit 3569d57

Browse files
committed
Use more *_path config keys
1 parent 91605f2 commit 3569d57

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

charts/matrix/templates/configmap.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ data:
1212
log_config: "/etc/synapse/config/log.yaml"
1313
signing_key_path: "/etc/synapse/secret/signing.key"
1414
media_store_path: /data/media_store
15+
macaroon_secret_key_path: "/etc/synapse/secret/macaroon_secret_key"
16+
registration_shared_secret_path: "/etc/synapse/secret/registration_shared_secret"
1517
serve_server_wellknown: true
1618
enable_metrics: true
1719
listeners:

charts/matrix/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ spec:
7878
config[components[-1]] = data
7979
8080
# Set secrets
81-
for key in ('form_secret', 'macaroon_secret_key', 'registration_shared_secret'):
81+
for key in ('form_secret',):
8282
with open(os.path.join('/etc/synapse/secret', key)) as fp:
8383
config[key] = fp.read().strip()
8484
{{- range $key, $config := .Values.extraConfig }}

0 commit comments

Comments
 (0)