blob: 07bb5c4eaccce3fccb23af51f16ffddf7ec61dba [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: {}
Krzysztof Opasiak17547342020-03-10 23:53:31 +010021
BorislavGb36d86c2018-04-01 18:59:54 +030022#################################################################
Krzysztof Opasiakf1f945b2020-02-04 21:16:50 +010023# Secrets metaconfig
24#################################################################
25secrets:
26 - uid: '{{ include "common.postgres.secret.rootPassUID" . }}'
27 type: password
28 externalSecret: '{{ tpl (default "" .Values.config.pgRootPasswordExternalSecret) . }}'
29 password: '{{ .Values.config.pgRootPassword }}'
30 - uid: '{{ include "common.postgres.secret.userCredentialsUID" . }}'
31 type: basicAuth
32 externalSecret: '{{ tpl (default "" .Values.config.pgUserExternalSecret) . }}'
33 login: '{{ .Values.config.pgUserName }}'
34 password: '{{ .Values.config.pgUserPassword }}'
35 - uid: '{{ include "common.postgres.secret.primaryPasswordUID" . }}'
36 type: password
37 externalSecret: '{{ tpl (default "" .Values.config.pgPrimaryPasswordExternalSecret) . }}'
38 password: '{{ .Values.config.pgPrimaryPassword }}'
39
40#################################################################
BorislavGb36d86c2018-04-01 18:59:54 +030041# Application configuration defaults.
42#################################################################
43
puthuparambil.aditya7625e522021-01-22 22:01:50 +010044# bitnami image doesn't support well single quote in password
45passwordStrengthOverride: basic
46
BorislavGb36d86c2018-04-01 18:59:54 +030047pullPolicy: Always
48
49# application configuration
50config:
51 pgUserName: testuser
52 pgDatabase: userdb
Krzysztof Opasiakb51ee372020-05-15 01:24:10 +020053 # pgPrimaryPassword: password
54 # pgUserPassword: password
55 # pgRootPassword: password
BorislavGb36d86c2018-04-01 18:59:54 +030056
57container:
58 name:
59 primary: pgset-primary
60 replica: pgset-replica
61
BorislavGb36d86c2018-04-01 18:59:54 +030062nodeSelector: {}
63
64affinity: {}
65
66# probe configuration parameters
67liveness:
BorislavG3f102012018-05-17 16:03:33 +000068 initialDelaySeconds: 300
BorislavGb36d86c2018-04-01 18:59:54 +030069 periodSeconds: 10
70 timeoutSeconds: 5
71 # necessary to disable liveness probe when setting breakpoints
72 # in debugger so K8s doesn't restart unresponsive container
73 enabled: true
74
75readiness:
BorislavG3f102012018-05-17 16:03:33 +000076 initialDelaySeconds: 10
BorislavGb36d86c2018-04-01 18:59:54 +030077 periodSeconds: 10
78
79## Persist data to a persitent volume
80persistence:
81 enabled: true
BorislavG3f102012018-05-17 16:03:33 +000082
BorislavGb36d86c2018-04-01 18:59:54 +030083 ## A manually managed Persistent Volume and Claim
84 ## Requires persistence.enabled: true
85 ## If defined, PVC must be created manually before volume will be bound
86 # existingClaim:
87 volumeReclaimPolicy: Retain
88
89 ## database data Persistent Volume Storage Class
90 ## If defined, storageClassName: <storageClass>
91 ## If set to "-", storageClassName: "", which disables dynamic provisioning
92 ## If undefined (the default) or set to null, no storageClassName spec is
93 ## set, choosing the default provisioner. (gp2 on AWS, standard on
94 ## GKE, AWS & OpenStack)
95 accessMode: ReadWriteOnce
96 size: 1Gi
97 mountPath: /dockerdata-nfs
98 mountSubPath: postgres/data
99 mountInitPath: postgres
100
101service:
102 type: ClusterIP
103 name: pgset
Sylvain Desbureaux0b243b62019-12-11 11:53:42 +0100104 portName: tcp-postgres
BorislavGb36d86c2018-04-01 18:59:54 +0300105 externalPort: 5432
106 internalPort: 5432
107 type2: ClusterIP
Sylvain Desbureaux0b243b62019-12-11 11:53:42 +0100108 name2: tcp-pgset-primary
109 portName2: tcp-postgres
BorislavGb36d86c2018-04-01 18:59:54 +0300110 externalPort2: 5432
111 internalPort2: 5432
112 type3: ClusterIP
Sylvain Desbureaux0b243b62019-12-11 11:53:42 +0100113 name3: tcp-pgset-replica
114 portName3: tcp-postgres
BorislavGb36d86c2018-04-01 18:59:54 +0300115 externalPort3: 5432
116 internalPort3: 5432
117
118ingress:
119 enabled: false
120
Sylvain Desbureaux335781f2020-09-23 10:31:50 +0200121flavor: small
122
123#resources: {}
124# We usually recommend not to specify default resources and to leave this as a conscious
125# choice for the user. This also increases chances charts run on environments with little
126# resources, such as Minikube. If you do want to specify resources, uncomment the following
127# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
128#
129# Example:
130# Configure resource requests and limits
131# ref: http://kubernetes.io/docs/user-guide/compute-resources/
132# Minimum memory for development is 2 CPU cores and 4GB memory
133# Minimum memory for production is 4 CPU cores and 8GB memory
134resources:
135 small:
136 limits:
137 cpu: 100m
138 memory: 300Mi
139 requests:
140 cpu: 10m
141 memory: 90Mi
142 large:
143 limits:
144 cpu: 2
145 memory: 4Gi
146 requests:
147 cpu: 1
148 memory: 2Gi
149 unlimited: {}