Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into mls
Browse files Browse the repository at this point in the history
  • Loading branch information
pcapriotti committed Feb 14, 2023
2 parents a7ba9f6 + 2ad43a2 commit d9d1641
Show file tree
Hide file tree
Showing 288 changed files with 973 additions and 3,379 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@ spar.integration-aws.yaml
integration-aws.yaml
DOCKER_ID*
swagger-ui
!charts/nginz/static/swagger-ui

services/nginz/integration-test/conf/nginz/zwagger-ui/*

deploy/dockerephemeral/build/airdock_base-all/
deploy/dockerephemeral/build/airdock_base/
Expand Down
22 changes: 8 additions & 14 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ db-migrate-package:

# Usage:
#
# Reset all keyspaces
# Reset all keyspaces and reset the ES index
# make db-reset
#
# Reset keyspace for only one service, say galley:
Expand All @@ -252,28 +252,22 @@ ifeq ($(package), all)
else
$(EXE_SCHEMA) --keyspace $(package)_test --replication-factor 1 --reset
endif
./dist/brig-index reset --elasticsearch-server http://localhost:9200 > /dev/null

# Usage:
#
# Migrate all keyspaces
# Migrate all keyspaces and reset the ES index
# make db-migrate
#
# Migrate keyspace for only one service, say galley:
# make db-migrate package=galley
.PHONY: db-migrate
db-migrate: c
ifeq ($(package), all)
./dist/brig-schema --keyspace brig_test --replication-factor 1
./dist/galley-schema --keyspace galley_test --replication-factor 1
./dist/gundeck-schema --keyspace gundeck_test --replication-factor 1
./dist/spar-schema --keyspace spar_test --replication-factor 1
# How this check works: https://stackoverflow.com/a/9802777
else ifeq ($(package), $(filter $(package),brig galley gundeck spar))
$(EXE_SCHEMA) --keyspace $(package)_test --replication-factor 1
else
@echo No schema migrations for $(package)
endif

./dist/brig-schema --keyspace brig_test --replication-factor 1 > /dev/null
./dist/galley-schema --keyspace galley_test --replication-factor 1 > /dev/null
./dist/gundeck-schema --keyspace gundeck_test --replication-factor 1 > /dev/null
./dist/spar-schema --keyspace spar_test --replication-factor 1 > /dev/null
./dist/brig-index reset --elasticsearch-server http://localhost:9200 > /dev/null

#################################
## dependencies
Expand Down
1 change: 1 addition & 0 deletions changelog.d/0-release-notes/coturn-beta
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The coturn Helm chart has been promoted to *beta* level stability.
6 changes: 6 additions & 0 deletions changelog.d/2-features/coturn-image-update
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
The coturn container image included in the coturn Helm chart was updated to
version `4.6.0-wireapp.3`.

With this version of coturn, the Prometheus metrics endpoint has been
updated, and the `turn_active_allocations` metric label has been *renamed* to
`turn_total_allocations`.
3 changes: 3 additions & 0 deletions changelog.d/3-bug-fixes/coturn-config-reloader
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
The container image used for handling online TLS certificate updates in the
coturn Helm chart was updated to a version with metadata compatible with
containerd.
1 change: 1 addition & 0 deletions changelog.d/4-docs/pr-3038
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update SAML/SCIM docs
1 change: 1 addition & 0 deletions changelog.d/5-internal/doc-msg-sending
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Document in code a function that sends remote Proteus messages
1 change: 1 addition & 0 deletions changelog.d/5-internal/federator-log
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Lower the log level of federator inotify
1 change: 1 addition & 0 deletions changelog.d/5-internal/graceful-shutdown
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use Wai's settings for graceful shutdown
2 changes: 2 additions & 0 deletions changelog.d/5-internal/redundant-constraints
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Enabling warnings for redundant constraints and removing the redundant
constraints.
1 change: 1 addition & 0 deletions changelog.d/5-internal/servantify-teams-notifications
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Migrate `/teams/notifications` to use the Servant library.
2 changes: 1 addition & 1 deletion charts/coturn/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ version: 0.0.42
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 4.5.2-wireapp.8
appVersion: 4.6.0-wireapp.3
2 changes: 1 addition & 1 deletion charts/coturn/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**Warning**: this chart is currently considered alpha. Use at your own risk!
**Warning**: this chart is currently considered beta. Use at your own risk!

This chart deploys Wire's fork of [coturn](https://github.com/coturn/coturn),
a STUN and TURN server, with some additional features developed by Wire (see
Expand Down
2 changes: 1 addition & 1 deletion charts/coturn/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ tls:
# for handling runtime certificate reloads.
repository: quay.io/wire/config-reloader-sidecar
pullPolicy: IfNotPresent
tag: 1aa6cbbf2ce3a5182ec47e3579bbcb8f47e22fdc
tag: 72c3c8434660bd157d42012b0bcd67f338fc5c7a

metrics:
serviceMonitor:
Expand Down
77 changes: 0 additions & 77 deletions charts/nginz/static/swagger-ui/index.html

This file was deleted.

Loading

0 comments on commit d9d1641

Please sign in to comment.