Skip to content

Commit

Permalink
charts/wire-server: add setFederationDomain (#393)
Browse files Browse the repository at this point in the history
* charts/wire-server: add setFederationDomain

This is a non-optional value in the next wire-server release

* Add note about accidental early release
  • Loading branch information
arianvp authored Dec 17, 2020
1 parent 1865039 commit 05c57e1
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# NEXT

A new mandatory option has been introduced to
`brig` and `galley` which in the future will be used for Wire federation. This domain name
is *not* optional even if federation is not used.

Please update your `values/wire-server/values.yaml` to set `brig.optSettings.setFederationDomain`
and `galley.settings.federationDomain` (Note the slightly different option name).

**NOTE**: These changes apply to chart version **0.129.0** and later eventhough
this release was made later than that **0.129.0** chart was published. We're sorry for the
inconvenience.

# 2020-12-07

## Update instructions
Expand Down
3 changes: 3 additions & 0 deletions values/wire-server/demo-values.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ brig:
teamSettings: https://teams.example.com # change this (on unset if team settings are not used)
teamCreatorWelcome: https://teams.example.com/login # change this
teamMemberWelcome: https://wire.example.com/download # change this
optSettings:
setFederationDomain: example.com # change this
emailSMS:
general:
emailSender: [email protected] # change this
Expand Down Expand Up @@ -104,6 +106,7 @@ galley:
host: cassandra-ephemeral
replicaCount: 1
settings:
federationDomain: example.com # change this
# prefix URI used when inviting users to a conversation by link
conversationCodeURI: https://example.com/join/ # change this
aws:
Expand Down
3 changes: 3 additions & 0 deletions values/wire-server/prod-values.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ brig:
teamSettings: https://teams.example.com # change this (or unset if team settings are not used)
teamCreatorWelcome: https://teams.example.com/login # change this
teamMemberWelcome: https://wire.example.com/download # change this
optSettings:
setFederationDomain: example.com # change this
emailSMS:
general:
emailSender: [email protected] # change this
Expand Down Expand Up @@ -136,6 +138,7 @@ galley:
settings:
# prefix URI used when inviting users to a conversation by link
conversationCodeURI: https://webapp.example.com/join/ # change this
federationDomain: example.com # change this
# see #RefConfigOptions in `/docs/reference` (https://github.com/wireapp/wire-server/)
featureFlags:
sso: disabled-by-default
Expand Down

0 comments on commit 05c57e1

Please sign in to comment.