diff options
| author | 2024-04-15 11:26:52 +0100 | |
|---|---|---|
| committer | 2024-04-15 11:26:52 +0100 | |
| commit | 23f7ec4f17dde7761619ef29634dd177b292d742 (patch) | |
| tree | be7744708c4c70f00e070f45acfe46efa636430d /kubernetes/namespaces/tooling/bitwarden/configmap.yaml | |
| parent | Remove unused services (diff) | |
Move services to tooling namespace
Diffstat (limited to 'kubernetes/namespaces/tooling/bitwarden/configmap.yaml')
| -rw-r--r-- | kubernetes/namespaces/tooling/bitwarden/configmap.yaml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/kubernetes/namespaces/tooling/bitwarden/configmap.yaml b/kubernetes/namespaces/tooling/bitwarden/configmap.yaml new file mode 100644 index 0000000..29b9a84 --- /dev/null +++ b/kubernetes/namespaces/tooling/bitwarden/configmap.yaml @@ -0,0 +1,24 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: bitwarden-config-env + namespace: tooling +data: + # Domain to access bitwarden by + DOMAIN: "https://bitwarden.pythondiscord.com" + + # Password hint must be sent to an email when this is false. + # When it's true, it'll be shown right on the page. + SHOW_PASSWORD_HINT: "false" + + # Admins only, please! + SIGNUPS_ALLOWED: "false" + + # Used for LiveSync + WEBSOCKET_ENABLED: "true" + + # Max conns to the DB + DATABASE_MAX_CONNS: "2" + + # Force bitwarden to use postgres, rather than it's own volume + I_REALLY_WANT_VOLATILE_STORAGE: "true" |