ansible/roles/bitwarden/defaults/main.yaml

95 lines
3.5 KiB
YAML
Raw Normal View History

2021-01-09 17:54:42 +00:00
bitwarden_enabled: true
bitwarden_publish: false
bitwarden_use_external_db: true
bitwarden_short_name: "bitwarden"
2021-01-09 17:54:42 +00:00
bitwarden_default_values:
fullnameOverride: "bitwarden"
bitwarden:
domain: "https://{{ bitwarden_short_name }}.{{ domain }}"
signupsAllowed: true
invitationsAllowed: true
gui:
# If you set a different port here, you must also provide it under env
port: 80
websockets:
enabled: true
port: 3012
admin:
enabled: false
disableAdminToken: true
existingSecret:
enabled: false
name: ""
tokenKey: ""
# External database configuration.
# Requires bitwardenrs/server >= 1.17.0 or bitwardenrs/server-{mysql,postgres} images
# ref: https://github.com/dani-garcia/bitwarden_rs/wiki/Using-the-MySQL-Backend
# https://github.com/dani-garcia/bitwarden_rs/wiki/Using-the-PostgreSQL-Backend
externalDatabase:
enabled: true
# Supported values: 'mysql', 'postgresql'.
type: "postgresql"
# Database host. Required if external database is enabled.
host: "{{ postgres_db_team | default(namespace) }}-postgres.{{ postgres_db_namespace | default(namespace) }}.svc.cluster.local"
# Database port. Optional, default value is specific to the database backend.
port: "5432"
# Database name.
database: "{{ bitwarden_db_name | default ('bitwarden') }}"
# Database user.
user: "{{ bitwarden_db_username }}"
# Database password. Special characters must be escaped with percent encoding.
password: "{{ bitwarden_db_password }}"
# Use existing secret for database credentials.
existingSecret:
enabled: false
name: ""
userKey: ""
# Special characters in the password value must be escaped with percent encoding.
passwordKey: ""
# Enable SMTP. https://github.com/dani-garcia/bitwarden_rs/wiki/SMTP-configuration
smtp:
enabled: true
# SMTP hostname, required if SMTP is enabled
host: "mail.{{ domain }}"
# SMTP sender e-mail address, required if SMTP is enabled
from: "bitwarden@{{ domain }}"
# SMTP sender name, defaults to 'Bitwarden_RS'
fromName: "bitwarden"
# Enable SSL connection
ssl: true
# Enable EXPLICIT_TLS
explicitTLS: true
# SMTP port
port: 465
# SMTP username
user: "bitwarden@{{ domain }}"
# SMTP password. Required is user is specified, ignored if no user provided
password: "{{ bitwarden_ldap_pass | default(bitwarden_ldap_password) }}"
timeout: 120
2021-01-09 17:54:42 +00:00
env:
LOG_LEVEL: "debug"
# If you plan to run the WebUI on a port other than port 80, specify that here:
# For example, if running the container as a non-root user.
# ROCKET_PORT: "80"
persistence:
enabled: true
accessMode: "{{ bitwarden_storage_mode | default('ReadWriteMany') }}"
size: "{{ bitwarden_size | default('8Gi') }}"
storageClass: "{{ bitwarden_storage | default('nfs-ssd') }}"
type: deployment
2021-01-09 17:54:42 +00:00
ingress:
enabled: true
className: "{{ external_ingress_class if bitwarden_publish else internal_ingress_class }}"
2021-01-09 17:54:42 +00:00
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
kubernetes.io/tls-acme: "true"
hosts:
- host: "{{ bitwarden_short_name }}.{{ domain }}"
paths:
- path: /
pathType: ImplementationSpecific
2021-01-09 17:54:42 +00:00
tls:
- secretName: "{{ bitwarden_short_name }}.{{ domain }}-tls"
2021-01-09 17:54:42 +00:00
hosts:
- "{{ bitwarden_short_name }}.{{ domain }}"