Default Helm-Values¶
TrueCharts is primarily build to supply TrueNAS SCALE Apps. However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
Most of our Apps also consume our "common" Helm Chart. If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart. You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
Values¶
Key | Type | Default | Description |
---|---|---|---|
database.type | string | "postgresql" | |
database.wal | bool | true | |
env.DOMAIN | string | "https://{{ if .Values.ingress }}{{ if .Values.ingress.main.enabled }}{{ ( index .Values.ingress.main.hosts 0 ).host }}{{ else }}placeholder.com{{ end }}{{ else }}placeholder.com{{ end }}" | |
envFrom[0].configMapRef.name | string | "vaultwardenconfig" | |
envFrom[1].secretRef.name | string | "vaultwardensecret" | |
envValueFrom.DATABASE_URL.secretKeyRef.key | string | "url" | |
envValueFrom.DATABASE_URL.secretKeyRef.name | string | "dbcreds" | |
image.pullPolicy | string | "IfNotPresent" | |
image.repository | string | "tccr.io/truecharts/vaultwarden" | |
image.tag | string | "v1.24.0@sha256:de9c2df3042be86e57c6e56bc1c7d6a72567527b25895836bdf4c6e7b899814d" | |
persistence.data.enabled | bool | true | |
persistence.data.mountPath | string | "/data" | |
postgresql.enabled | bool | true | |
postgresql.existingSecret | string | "dbcreds" | |
postgresql.postgresqlDatabase | string | "vaultwarden" | |
postgresql.postgresqlUsername | string | "vaultwarden" | |
service.main.ports.main.port | int | 10102 | |
service.main.ports.main.targetPort | int | 8080 | |
service.ws.enabled | bool | true | |
service.ws.ports.ws.enabled | bool | true | |
service.ws.ports.ws.port | int | 3012 | |
service.ws.ports.ws.targetPort | int | 3012 | |
vaultwarden.admin.disableAdminToken | bool | false | |
vaultwarden.admin.enabled | bool | false | |
vaultwarden.allowInvitation | bool | true | emailAttempts: 3 emailTokenExpiration: 600 Allow invited users to sign-up even feature is disabled: https://github.com/dani-garcia/bitwarden_rs/wiki/Disable-invitations |
vaultwarden.allowSignups | bool | true | |
vaultwarden.enableWebVault | bool | true | |
vaultwarden.enableWebsockets | bool | true | Redirect HTTP path "/notifications/hub" to port 3012. Ingress/IngressRoute controllers are automatically configured. |
vaultwarden.icons.disableDownload | bool | false | |
vaultwarden.log.file | string | "" | |
vaultwarden.log.level | string | "trace" | |
vaultwarden.orgCreationUsers | string | "all" | |
vaultwarden.requireEmail | bool | false | |
vaultwarden.showPasswordHint | bool | true | defaultInviteName: "" |
vaultwarden.smtp.enabled | bool | false | |
vaultwarden.smtp.from | string | "" | |
vaultwarden.smtp.host | string | "" | |
vaultwarden.verifySignup | bool | false | signupDomains: - domain.tld Verify e-mail before login is enabled. SMTP must be enabled. |
vaultwarden.yubico.enabled | bool | false |
All Rights Reserved - The TrueCharts Project