-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2461 from wireapp/release_2022-06-08_09_20
Release 2022-06-08 - (expected chart version 4.13.0)
- Loading branch information
Showing
315 changed files
with
4,474 additions
and
3,468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,6 @@ | |
.stack-root-buildah | ||
.local | ||
services/nginz/src/objs | ||
dist-newstyle | ||
.env | ||
.direnv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# We need quasi quotes support. | ||
- arguments: [ -XQuasiQuotes, --color ] | ||
# Used to enforce ormolu styling. Can be revisited if we change formatters. | ||
- ignore: { name: Redundant $ } | ||
- ignore: { name: Redundant do } | ||
- ignore: { name: Use newtype instead of data } | ||
# | ||
# Left for the programmer to decide. See discussion at https://github.com/wireapp/wire-server/pull/2382#discussion_r871194424 | ||
- ignore: { name: Avoid lambda } | ||
- ignore: { name: Avoid lambda using `infix` } | ||
|
||
- ignore: { name: Use section } | ||
# custom rules: | ||
- hint: { lhs: (() <$), rhs: void } | ||
- hint: { lhs: return, rhs: pure } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{{- if .Values.config.geoip.enabled }} | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: brig-geoip | ||
labels: | ||
wireService: brig | ||
chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} | ||
release: "{{ .Release.Name }}" | ||
heritage: "{{ .Release.Service }}" | ||
type: Opaque | ||
data: | ||
{{- with .Values.secrets.geoip }} | ||
accountId: {{ required ".secrets.geoip.accountId must be provided when .Values.config.geoip.enabled is True" .accountId | b64enc | quote }} | ||
licenseKey: {{ required ".secrets.geoip.licenseKey must be provided when .Values.config.geoip.enabled is True" .licenseKey | b64enc | quote }} | ||
editionIds: {{ required ".secrets.geoip.editionIds must be provided when .Values.config.geoip.enabled is True" .editionIds | b64enc | quote }} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
a (blacklist (path "/provider") | ||
(path "/provider/**") | ||
(path "/bot") | ||
(path "/bot/**") | ||
(path "/i/**")) | ||
|
||
b (whitelist (path "/bot") | ||
(path "/bot/**")) | ||
|
||
p (whitelist (path "/provider") | ||
(path "/provider/**")) | ||
|
||
# LegalHold Access Tokens | ||
la (whitelist (path "/notifications") | ||
(path "/assets/v3/**") | ||
(path "/users") | ||
(path "/users/**")) |
Oops, something went wrong.