blob: 10f9405de6367b981bedcf6a4ba068ff6d678dc3 [file] [log] [blame]
BorislavGb36d86c2018-04-01 18:59:54 +03001# Copyright © 2018 Amdocs, AT&T, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
BorislavGb36d86c2018-04-01 18:59:54 +030020 persistence: {}
21 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000022 readinessImage: readiness-check:2.0.0
BorislavGb36d86c2018-04-01 18:59:54 +030023
Krzysztof Opasiak17547342020-03-10 23:53:31 +010024 # envsusbt
25 envsubstImage: dibi/envsubst
26
BorislavGb36d86c2018-04-01 18:59:54 +030027#################################################################
Krzysztof Opasiakf1f945b2020-02-04 21:16:50 +010028# Secrets metaconfig
29#################################################################
30secrets:
31 - uid: '{{ include "common.postgres.secret.rootPassUID" . }}'
32 type: password
33 externalSecret: '{{ tpl (default "" .Values.config.pgRootPasswordExternalSecret) . }}'
34 password: '{{ .Values.config.pgRootPassword }}'
35 - uid: '{{ include "common.postgres.secret.userCredentialsUID" . }}'
36 type: basicAuth
37 externalSecret: '{{ tpl (default "" .Values.config.pgUserExternalSecret) . }}'
38 login: '{{ .Values.config.pgUserName }}'
39 password: '{{ .Values.config.pgUserPassword }}'
40 - uid: '{{ include "common.postgres.secret.primaryPasswordUID" . }}'
41 type: password
42 externalSecret: '{{ tpl (default "" .Values.config.pgPrimaryPasswordExternalSecret) . }}'
43 password: '{{ .Values.config.pgPrimaryPassword }}'
44
45#################################################################
BorislavGb36d86c2018-04-01 18:59:54 +030046# Application configuration defaults.
47#################################################################
48
49# BusyBox image
50busyboxRepository: registry.hub.docker.com
51busyboxImage: library/busybox:latest
52
53postgresRepository: crunchydata
Sylvain Desbureauxa844ac72020-02-18 16:50:05 +010054image: crunchy-postgres:centos7-10.11-4.2.1
BorislavGb36d86c2018-04-01 18:59:54 +030055pullPolicy: Always
56
57# application configuration
58config:
59 pgUserName: testuser
60 pgDatabase: userdb
61 pgPrimaryPassword: password
62 pgUserPassword: password
63 pgRootPassword: password
64
65container:
66 name:
67 primary: pgset-primary
68 replica: pgset-replica
69
BorislavGb36d86c2018-04-01 18:59:54 +030070nodeSelector: {}
71
72affinity: {}
73
74# probe configuration parameters
75liveness:
BorislavG3f102012018-05-17 16:03:33 +000076 initialDelaySeconds: 300
BorislavGb36d86c2018-04-01 18:59:54 +030077 periodSeconds: 10
78 timeoutSeconds: 5
79 # necessary to disable liveness probe when setting breakpoints
80 # in debugger so K8s doesn't restart unresponsive container
81 enabled: true
82
83readiness:
BorislavG3f102012018-05-17 16:03:33 +000084 initialDelaySeconds: 10
BorislavGb36d86c2018-04-01 18:59:54 +030085 periodSeconds: 10
86
87## Persist data to a persitent volume
88persistence:
89 enabled: true
BorislavG3f102012018-05-17 16:03:33 +000090
BorislavGb36d86c2018-04-01 18:59:54 +030091 ## A manually managed Persistent Volume and Claim
92 ## Requires persistence.enabled: true
93 ## If defined, PVC must be created manually before volume will be bound
94 # existingClaim:
95 volumeReclaimPolicy: Retain
96
97 ## database data Persistent Volume Storage Class
98 ## If defined, storageClassName: <storageClass>
99 ## If set to "-", storageClassName: "", which disables dynamic provisioning
100 ## If undefined (the default) or set to null, no storageClassName spec is
101 ## set, choosing the default provisioner. (gp2 on AWS, standard on
102 ## GKE, AWS & OpenStack)
103 accessMode: ReadWriteOnce
104 size: 1Gi
105 mountPath: /dockerdata-nfs
106 mountSubPath: postgres/data
107 mountInitPath: postgres
108
109service:
110 type: ClusterIP
111 name: pgset
Sylvain Desbureaux0b243b62019-12-11 11:53:42 +0100112 portName: tcp-postgres
BorislavGb36d86c2018-04-01 18:59:54 +0300113 externalPort: 5432
114 internalPort: 5432
115 type2: ClusterIP
Sylvain Desbureaux0b243b62019-12-11 11:53:42 +0100116 name2: tcp-pgset-primary
117 portName2: tcp-postgres
BorislavGb36d86c2018-04-01 18:59:54 +0300118 externalPort2: 5432
119 internalPort2: 5432
120 type3: ClusterIP
Sylvain Desbureaux0b243b62019-12-11 11:53:42 +0100121 name3: tcp-pgset-replica
122 portName3: tcp-postgres
BorislavGb36d86c2018-04-01 18:59:54 +0300123 externalPort3: 5432
124 internalPort3: 5432
125
126ingress:
127 enabled: false
128
129resources: {}
130 # We usually recommend not to specify default resources and to leave this as a conscious
131 # choice for the user. This also increases chances charts run on environments with little
132 # resources, such as Minikube. If you do want to specify resources, uncomment the following
133 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
134 #
135 # Example:
136 # Configure resource requests and limits
137 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
138 # Minimum memory for development is 2 CPU cores and 4GB memory
139 # Minimum memory for production is 4 CPU cores and 8GB memory
140#resources:
141# limits:
142# cpu: 2
143# memory: 4Gi
144# requests:
145# cpu: 2
146# memory: 4Gi