We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91605f2 commit 3569d57Copy full SHA for 3569d57
2 files changed
charts/matrix/templates/configmap.yaml
@@ -12,6 +12,8 @@ data:
12
log_config: "/etc/synapse/config/log.yaml"
13
signing_key_path: "/etc/synapse/secret/signing.key"
14
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"
17
serve_server_wellknown: true
18
enable_metrics: true
19
listeners:
charts/matrix/templates/deployment.yaml
@@ -78,7 +78,7 @@ spec:
78
config[components[-1]] = data
79
80
# Set secrets
81
- for key in ('form_secret', 'macaroon_secret_key', 'registration_shared_secret'):
+ for key in ('form_secret',):
82
with open(os.path.join('/etc/synapse/secret', key)) as fp:
83
config[key] = fp.read().strip()
84
{{- range $key, $config := .Values.extraConfig }}
0 commit comments