fix(synapse) correct data to stringdata for lookup

This commit is contained in:
kjeld Schouten-Lebbing 2022-01-31 18:55:55 +01:00
parent 96d73df64c
commit 438f5c14a4
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
2 changed files with 5 additions and 3 deletions

View File

@ -41,9 +41,7 @@ stringData:
{{- end }} {{- end }}
{{- if $previous }} {{- if $previous }}
{{- $msk = ( index $previous.data "macaroon_secret_key" ) }} {{- $msk = ( index $previous.stringData "macaroon_secret_key" ) }}
{{- else }}
{{- end }} {{- end }}
macaroon_secret_key: {{ $msk }} macaroon_secret_key: {{ $msk }}

View File

@ -59,6 +59,10 @@ installContainers:
- "synapse.app.homeserver" - "synapse.app.homeserver"
- "--config-path" - "--config-path"
- "/data/homeserver.yaml" - "/data/homeserver.yaml"
- "--config-path"
- "/data/secret/secret.yaml"
- "--config-path"
- "/data/custom.yaml"
- "--keys-directory" - "--keys-directory"
- "/data/keys" - "/data/keys"
- "--generate-keys" - "--generate-keys"