TrueChartsCatalogClone/stable/nextcloud/11.0.0/helm-values.md

3.9 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
cronjob.annotations object {}
cronjob.failedJobsHistoryLimit int 5
cronjob.schedule string "*/5 * * * *"
cronjob.successfulJobsHistoryLimit int 2
env.TRUSTED_PROXIES string "172.16.0.0/16"
envFrom[0].configMapRef.name string "nextcloudconfig"
envTpl.POSTGRES_DB string "{{ .Values.postgresql.postgresqlDatabase }}"
envTpl.POSTGRES_USER string "{{ .Values.postgresql.postgresqlUsername }}"
envValueFrom.POSTGRES_HOST.secretKeyRef.key string "plainporthost"
envValueFrom.POSTGRES_HOST.secretKeyRef.name string "dbcreds"
envValueFrom.POSTGRES_PASSWORD.secretKeyRef.key string "postgresql-password"
envValueFrom.POSTGRES_PASSWORD.secretKeyRef.name string "dbcreds"
envValueFrom.REDIS_HOST.secretKeyRef.key string "plainhost"
envValueFrom.REDIS_HOST.secretKeyRef.name string "rediscreds"
envValueFrom.REDIS_HOST_PASSWORD.secretKeyRef.key string "redis-password"
envValueFrom.REDIS_HOST_PASSWORD.secretKeyRef.name string "rediscreds"
image.pullPolicy string "IfNotPresent"
image.repository string "tccr.io/truecharts/nextcloud"
image.tag string "v23.0.0@sha256:49412dab7bae97f6b4ce8dedd0e7cd4a39b67fe49a2f1249a95196ccb58c7258"
persistence.data.enabled bool true
persistence.data.mountPath string "/var/www/html"
podSecurityContext.fsGroup int 33
podSecurityContext.runAsGroup int 0
podSecurityContext.runAsUser int 0
postgresql.enabled bool true
postgresql.existingSecret string "dbcreds"
postgresql.postgresqlDatabase string "nextcloud"
postgresql.postgresqlUsername string "nextcloud"
probes object See below Probe configuration -- [ref]
probes.liveness object See below Liveness probe configuration
probes.liveness.spec object "/" If a HTTP probe is used (default for HTTP/HTTPS services) this path is used
probes.readiness object See below Redainess probe configuration
probes.readiness.spec object "/" If a HTTP probe is used (default for HTTP/HTTPS services) this path is used
probes.startup object See below Startup probe configuration
probes.startup.spec object "/" If a HTTP probe is used (default for HTTP/HTTPS services) this path is used
redis.enabled bool true
redis.existingSecret string "rediscreds"
secret.NEXTCLOUD_ADMIN_PASSWORD string "adminpass"
secret.NEXTCLOUD_ADMIN_USER string "admin"
securityContext.readOnlyRootFilesystem bool false
securityContext.runAsNonRoot bool false
service.hpb.enabled bool true
service.hpb.ports.hpb.enabled bool true
service.hpb.ports.hpb.port int 7867
service.hpb.ports.hpb.targetPort int 7867
service.main.ports.main.port int 10020
service.main.ports.main.targetPort int 80

All Rights Reserved - The TrueCharts Project