Skip to content

Commit

Permalink
feat(pushNotifications): add configuration option for data region (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
pree authored Mar 6, 2024
1 parent dcb29e4 commit 0b290f2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/vaultwarden/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ maintainers:
- name: guerzon
email: [email protected]
url: https://github.com/guerzon
version: 0.22.4
version: 0.22.5
kubeVersion: ">=1.12.0-0"
6 changes: 6 additions & 0 deletions charts/vaultwarden/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ data:
PUSH_ENABLED: "true"
PUSH_INSTALLATION_ID: {{ .Values.pushNotifications.installationId | quote }}
PUSH_INSTALLATION_KEY: {{ .Values.pushNotifications.installationKey | quote }}
{{- with .Values.pushNotifications.relayUri }}
PUSH_RELAY_URI: {{ . | quote }}
{{- end }}
{{- with .Values.pushNotifications.identityUri }}
PUSH_IDENTITY_URI: {{ . | quote }}
{{- end }}
{{- end }}
{{- if and .Values.yubico.clientId .Values.yubico.secretKey }}
YUBICO_CLIENT_ID: {{ .Values.yubico.clientId | quote }}
Expand Down
2 changes: 2 additions & 0 deletions charts/vaultwarden/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,8 @@ database:
pushNotifications: {}
# installationId: ""
# installationKey: ""
# relayUri: "https://push.bitwarden.com"
# identityUri: "https://identity.bitwarden.com"

## @section Scheduled jobs
##
Expand Down

0 comments on commit 0b290f2

Please sign in to comment.