2021-08-12 11:55:45 +00:00
|
|
|
image:
|
2021-12-03 12:02:44 +00:00
|
|
|
repository: tccr.io/truecharts/postgresql
|
2021-08-12 11:55:45 +00:00
|
|
|
pullPolicy: IfNotPresent
|
2021-12-03 12:16:22 +00:00
|
|
|
tag: v14.1.0@sha256:a8d81b4ce9ba6377b7250847e3b02cf84ae409785cf7df797a160b0f31b4246e
|
2021-08-12 11:55:45 +00:00
|
|
|
|
2021-11-15 19:50:10 +00:00
|
|
|
controller:
|
|
|
|
# -- Set the controller type.
|
|
|
|
# Valid options are deployment, daemonset or statefulset
|
|
|
|
type: statefulset
|
|
|
|
# -- Number of desired pods
|
|
|
|
replicas: 1
|
|
|
|
# -- 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.
|
|
|
|
strategy: RollingUpdate
|
|
|
|
rollingUpdate:
|
|
|
|
# -- Set deployment RollingUpdate max unavailable
|
|
|
|
unavailable: 1
|
|
|
|
# -- Set deployment RollingUpdate max surge
|
|
|
|
surge:
|
|
|
|
# -- Set statefulset RollingUpdate partition
|
|
|
|
partition:
|
|
|
|
# -- ReplicaSet revision history limit
|
|
|
|
revisionHistoryLimit: 3
|
|
|
|
|
2021-09-26 18:05:21 +00:00
|
|
|
securityContext:
|
|
|
|
readOnlyRootFilesystem: false
|
2021-08-12 11:55:45 +00:00
|
|
|
|
|
|
|
service:
|
|
|
|
main:
|
|
|
|
ports:
|
|
|
|
main:
|
|
|
|
port: 5432
|
2021-11-06 21:55:18 +00:00
|
|
|
targetPort: 5432
|
2021-08-12 11:55:45 +00:00
|
|
|
|
2021-08-17 09:52:34 +00:00
|
|
|
## TODO: Fix the backup-on-upgrade system
|
|
|
|
enableUpgradeBackup: false
|
|
|
|
|
2021-09-11 18:58:37 +00:00
|
|
|
podSecurityContext:
|
|
|
|
runAsGroup: 0
|
|
|
|
|
2021-11-16 15:37:35 +00:00
|
|
|
volumeClaimTemplates:
|
2021-08-13 21:43:13 +00:00
|
|
|
db:
|
2021-08-12 11:55:45 +00:00
|
|
|
enabled: true
|
2021-12-03 12:02:44 +00:00
|
|
|
mountPath: "/tccr.io/truecharts/postgresql"
|
2021-11-14 19:19:16 +00:00
|
|
|
|
2021-08-12 11:55:45 +00:00
|
|
|
|
|
|
|
postgresqlPassword: "testpass"
|
|
|
|
postgresqlUsername: "test"
|
|
|
|
postgresqlDatabase: "test"
|
2021-11-08 16:37:56 +00:00
|
|
|
postgrespassword: "testroot"
|
2021-10-09 23:20:01 +00:00
|
|
|
existingSecret: ""
|
2021-08-12 11:55:45 +00:00
|
|
|
|
|
|
|
envValueFrom:
|
|
|
|
POSTGRES_PASSWORD:
|
|
|
|
secretKeyRef:
|
2021-08-27 14:50:19 +00:00
|
|
|
name: '{{ ( tpl .Values.existingSecret $ ) | default ( include "common.names.fullname" . ) }}'
|
2021-08-12 11:55:45 +00:00
|
|
|
key: "postgresql-password"
|
2021-11-08 16:37:56 +00:00
|
|
|
POSTGRESQL_POSTGRES_PASSWORD:
|
|
|
|
secretKeyRef:
|
|
|
|
name: '{{ ( tpl .Values.existingSecret $ ) | default ( include "common.names.fullname" . ) }}'
|
|
|
|
key: "postgresql-postgres-password"
|
2021-08-12 11:55:45 +00:00
|
|
|
|
|
|
|
envTpl:
|
|
|
|
POSTGRES_USER: "{{ .Values.postgresqlUsername }}"
|
|
|
|
POSTGRES_DB: "{{ .Values.postgresqlDatabase }}"
|
|
|
|
# POSTGRESQL_POSTGRES_PASSWORD: "{{ .Values.postgrespassword }}"
|
|
|
|
# POSTGRESQL_PASSWORD: "{{ .Values.password }}"
|