Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions changelog.d/0-release-notes/WPB-227
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
There is a new optional Boolean option, `multiSFT.enabled`, in `brig.yaml`,
allowing calls between federated SFT servers. If provided, the field
`is_federating` in the response of `/calls/config/v2` will reflect
`multiSFT.enabled`'s value.
There is a new optional Boolean in Brig's Helm chart, `config.multiSFT.enabled`,
signalling whether calls between federated SFT servers are allowed.

IMPORTANT: The value of this new option needs be set to the value of
`multiSFT.enabled` in SFT's Helm chart. Otherwise federated SFT servers won't
work.

If provided, the field `is_federating` in the response of `/calls/config/v2`
will reflect `multiSFT.enabled`'s value.

Example:

```
# [brig.yaml]
# [brig/values.yaml]
multiSFT:
enabled: true
```
Expand Down
2 changes: 2 additions & 0 deletions charts/brig/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ data:
host: gundeck
port: 8080

{{- if .multiSFT }}
multiSFT: {{ .multiSFT.enabled }}
{{- end }}
{{- if .enableFederation }}
# TODO remove this
federator:
Expand Down