Skip to content

Commit 61c8bd5

Browse files
authored
Merge pull request #400 from wireapp/release/2020-12-21
Release 2020/12/21
2 parents 0b8c817 + f786033 commit 61c8bd5

File tree

5 files changed

+19
-8
lines changed

5 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 2020-12-21
2+
3+
* brig: Add setExpiredUserCleanupTimeout to configmap (#399) see also: https://github.com/wireapp/wire-server/pull/1264
4+
* [helm] Remove duplicate fields from brig section in the example value files (#398)
5+
* Add spar to the integration tests for brig (#397)
6+
17
# 2020-12-17
28

39
## Update instructions

charts/brig/templates/configmap.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,9 @@ data:
167167
optSettings:
168168
setActivationTimeout: {{ .setActivationTimeout }}
169169
setTeamInvitationTimeout: {{ .setTeamInvitationTimeout }}
170+
{{- if .setExpiredUserCleanupTimeout }}
171+
setExpiredUserCleanupTimeout: {{ .setExpiredUserCleanupTimeout }}
172+
{{- end }}
170173
setTwilio: /etc/wire/brig/secrets/twilio-credentials.yaml
171174
setNexmo: /etc/wire/brig/secrets/nexmo-credentials.yaml
172175
setUserMaxConnections: {{ .setUserMaxConnections }}

charts/brig/templates/tests/configmap.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ data:
2222
host: cargohold
2323
port: 8080
2424
25+
spar:
26+
host: spar
27+
port: 8080
28+
2529
nginz:
2630
# Full URL is set so that there can be a common cookiedomain between nginz and brig
2731
# needed by some integration tests

values/wire-server/demo-values.example.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,13 @@ brig:
4141
teamMemberWelcome: https://wire.example.com/download # change this
4242
optSettings:
4343
setFederationDomain: example.com # change this
44+
# Sync the domain with the 'host' variable in the sftd chart
45+
# uncomment this section if conference calling is not used
46+
setSftStaticUrl: "https://sftd.example.om:443"
4447
emailSMS:
4548
general:
4649
emailSender: email@example.com # change this
4750
smsSender: "insert-sms-sender-for-twilio" # change this if SMS support is desired
48-
optSettings:
49-
# Sync the domain with the 'host' variable in the sftd chart
50-
# uncomment this section if conference calling is not used
51-
setSftStaticUrl: "https://sftd.example.om:443"
5251
smtp:
5352
host: demo-smtp # change this if you want to use your own SMTP server
5453
port: 25 # change this

values/wire-server/prod-values.example.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ brig:
4242
teamMemberWelcome: https://wire.example.com/download # change this
4343
optSettings:
4444
setFederationDomain: example.com # change this
45+
# Sync the domain with the 'host' variable in the sftd chart
46+
# uncomment this section if conference calling is not used
47+
setSftStaticUrl: "https://sftd.example.om:443"
4548
emailSMS:
4649
general:
4750
emailSender: email@example.com # change this
@@ -74,10 +77,6 @@ brig:
7477
# noProxyList:
7578
# - "local.example.com"
7679
# - "10.23.0.0/16"
77-
optSettings:
78-
# Sync the domain with the 'host' variable in the sftd chart
79-
# uncomment this section if conference calling is not used
80-
setSftStaticUrl: "https://sftd.example.om:443"
8180
turnStatic:
8281
v1:
8382
- "turn:turn01.example.com:80"

0 commit comments

Comments
 (0)