TrueChartsCatalogClone/stable/etherpad/2.0.1/helm-values.md

2.5 KiB

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
env object {}
envTpl.DB_NAME string "{{ .Values.postgresql.postgresqlDatabase }}"
envTpl.DB_PORT string "5432"
envTpl.DB_TYPE string "postgres"
envTpl.DB_USER string "{{ .Values.postgresql.postgresqlUsername }}"
envValueFrom.DB_HOST.secretKeyRef.key string "plainhost"
envValueFrom.DB_HOST.secretKeyRef.name string "dbcreds"
envValueFrom.DB_PASS.secretKeyRef.key string "postgresql-password"
envValueFrom.DB_PASS.secretKeyRef.name string "dbcreds"
image.pullPolicy string "IfNotPresent"
image.repository string "ghcr.io/nicholaswilde/etherpad"
image.tag string "version-1.8.14@sha256:26bbd45110d5b4d70246fafe40d4c4a7047b7b4fde409763a125324fa93b2d73"
persistence.app.accessMode string "ReadWriteOnce"
persistence.app.enabled bool true
persistence.app.mountPath string "/opt/etherpad-lite/app"
persistence.app.size string "1Gi"
persistence.data.accessMode string "ReadWriteOnce"
persistence.data.enabled bool true
persistence.data.mountPath string "/opt/etherpad-lite/var"
persistence.data.size string "1Gi"
podSecurityContext.runAsGroup int 0
podSecurityContext.runAsUser int 0
postgresql.enabled bool true
postgresql.existingSecret string "dbcreds"
postgresql.postgresqlDatabase string "etherpad"
postgresql.postgresqlUsername string "etherpad"
secret object {}
securityContext.readOnlyRootFilesystem bool false
securityContext.runAsNonRoot bool false
service.main.ports.main.port int 9001

All Rights Reserved - The TrueCharts Project