TrueChartsClone/docs/apps/dependency/postgresql/helm-values.md

3.0 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
controller.replicas int 1 Number of desired pods
controller.revisionHistoryLimit int 3 ReplicaSet revision history limit
controller.rollingUpdate.partition string nil Set statefulset RollingUpdate partition
controller.rollingUpdate.surge string nil Set deployment RollingUpdate max surge
controller.rollingUpdate.unavailable int 1 Set deployment RollingUpdate max unavailable
controller.strategy string "RollingUpdate" Set the controller upgrade strategy For Deployments, valid values are Recreate (default) and RollingUpdate. For StatefulSets, valid values are OnDelete and RollingUpdate (default). DaemonSets ignore this.
controller.type string "statefulset" Set the controller type. Valid options are deployment, daemonset or statefulset
enableUpgradeBackup bool false
envTpl.POSTGRES_DB string "{{ .Values.postgresqlDatabase }}"
envTpl.POSTGRES_USER string "{{ .Values.postgresqlUsername }}"
envValueFrom.POSTGRESQL_POSTGRES_PASSWORD.secretKeyRef.key string "postgresql-postgres-password"
envValueFrom.POSTGRESQL_POSTGRES_PASSWORD.secretKeyRef.name string `"{{ ( tpl .Values.existingSecret $ ) default ( include "common.names.fullname" . ) }}"`
envValueFrom.POSTGRES_PASSWORD.secretKeyRef.key string "postgresql-password"
envValueFrom.POSTGRES_PASSWORD.secretKeyRef.name string `"{{ ( tpl .Values.existingSecret $ ) default ( include "common.names.fullname" . ) }}"`
existingSecret string ""
image.pullPolicy string "IfNotPresent"
image.repository string "bitnami/postgresql"
image.tag string "14.1.0@sha256:9ba99644cbad69d08a9ad96656add5b498a57e692975878208d6ab32752eaa3c"
podSecurityContext.runAsGroup int 0
postgrespassword string "testroot"
postgresqlDatabase string "test"
postgresqlPassword string "testpass"
postgresqlUsername string "test"
securityContext.readOnlyRootFilesystem bool false
service.main.ports.main.port int 5432
service.main.ports.main.targetPort int 5432
volumeClaimTemplates.db.enabled bool true
volumeClaimTemplates.db.mountPath string "/bitnami/postgresql"

All Rights Reserved - The TrueCharts Project