fix(synapse) correct data to stringdata for lookup
This commit is contained in:
parent
96d73df64c
commit
438f5c14a4
|
@ -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 }}
|
||||||
|
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue