blob: fbc43c07688210b7cb82422b6cb7918b3204b609 [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: {}
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020021 readinessImage: onap/oom/readiness:3.0.1
BorislavGb36d86c2018-04-01 18:59:54 +030022
Krzysztof Opasiak17547342020-03-10 23:53:31 +010023 # envsusbt
24 envsubstImage: dibi/envsubst
25
BorislavGb36d86c2018-04-01 18:59:54 +030026#################################################################
Krzysztof Opasiakf1f945b2020-02-04 21:16:50 +010027# Secrets metaconfig
28#################################################################
29secrets:
30 - uid: '{{ include "common.postgres.secret.rootPassUID" . }}'
31 type: password
32 externalSecret: '{{ tpl (default "" .Values.config.pgRootPasswordExternalSecret) . }}'
33 password: '{{ .Values.config.pgRootPassword }}'
34 - uid: '{{ include "common.postgres.secret.userCredentialsUID" . }}'
35 type: basicAuth
36 externalSecret: '{{ tpl (default "" .Values.config.pgUserExternalSecret) . }}'
37 login: '{{ .Values.config.pgUserName }}'
38 password: '{{ .Values.config.pgUserPassword }}'
39 - uid: '{{ include "common.postgres.secret.primaryPasswordUID" . }}'
40 type: password
41 externalSecret: '{{ tpl (default "" .Values.config.pgPrimaryPasswordExternalSecret) . }}'
42 password: '{{ .Values.config.pgPrimaryPassword }}'
43
44#################################################################
BorislavGb36d86c2018-04-01 18:59:54 +030045# Application configuration defaults.
46#################################################################
47
48# BusyBox image
49busyboxRepository: registry.hub.docker.com
50busyboxImage: library/busybox:latest
51
52postgresRepository: crunchydata
Sylvain Desbureauxa844ac72020-02-18 16:50:05 +010053image: crunchy-postgres:centos7-10.11-4.2.1
BorislavGb36d86c2018-04-01 18:59:54 +030054pullPolicy: Always
55
56# application configuration
57config:
58 pgUserName: testuser
59 pgDatabase: userdb
Krzysztof Opasiakb51ee372020-05-15 01:24:10 +020060 # pgPrimaryPassword: password
61 # pgUserPassword: password
62 # pgRootPassword: password
BorislavGb36d86c2018-04-01 18:59:54 +030063
64container:
65 name:
66 primary: pgset-primary
67 replica: pgset-replica
68
BorislavGb36d86c2018-04-01 18:59:54 +030069nodeSelector: {}
70
71affinity: {}
72
73# probe configuration parameters
74liveness:
BorislavG3f102012018-05-17 16:03:33 +000075 initialDelaySeconds: 300
BorislavGb36d86c2018-04-01 18:59:54 +030076 periodSeconds: 10
77 timeoutSeconds: 5
78 # necessary to disable liveness probe when setting breakpoints
79 # in debugger so K8s doesn't restart unresponsive container
80 enabled: true
81
82readiness:
BorislavG3f102012018-05-17 16:03:33 +000083 initialDelaySeconds: 10
BorislavGb36d86c2018-04-01 18:59:54 +030084 periodSeconds: 10
85
86## Persist data to a persitent volume
87persistence:
88 enabled: true
BorislavG3f102012018-05-17 16:03:33 +000089
BorislavGb36d86c2018-04-01 18:59:54 +030090 ## A manually managed Persistent Volume and Claim
91 ## Requires persistence.enabled: true
92 ## If defined, PVC must be created manually before volume will be bound
93 # existingClaim:
94 volumeReclaimPolicy: Retain
95
96 ## database data Persistent Volume Storage Class
97 ## If defined, storageClassName: <storageClass>
98 ## If set to "-", storageClassName: "", which disables dynamic provisioning
99 ## If undefined (the default) or set to null, no storageClassName spec is
100 ## set, choosing the default provisioner. (gp2 on AWS, standard on
101 ## GKE, AWS & OpenStack)
102 accessMode: ReadWriteOnce
103 size: 1Gi
104 mountPath: /dockerdata-nfs
105 mountSubPath: postgres/data
106 mountInitPath: postgres
107
108service:
109 type: ClusterIP
110 name: pgset
Sylvain Desbureaux0b243b62019-12-11 11:53:42 +0100111 portName: tcp-postgres
BorislavGb36d86c2018-04-01 18:59:54 +0300112 externalPort: 5432
113 internalPort: 5432
114 type2: ClusterIP
Sylvain Desbureaux0b243b62019-12-11 11:53:42 +0100115 name2: tcp-pgset-primary
116 portName2: tcp-postgres
BorislavGb36d86c2018-04-01 18:59:54 +0300117 externalPort2: 5432
118 internalPort2: 5432
119 type3: ClusterIP
Sylvain Desbureaux0b243b62019-12-11 11:53:42 +0100120 name3: tcp-pgset-replica
121 portName3: tcp-postgres
BorislavGb36d86c2018-04-01 18:59:54 +0300122 externalPort3: 5432
123 internalPort3: 5432
124
125ingress:
126 enabled: false
127
128resources: {}
129 # We usually recommend not to specify default resources and to leave this as a conscious
130 # choice for the user. This also increases chances charts run on environments with little
131 # resources, such as Minikube. If you do want to specify resources, uncomment the following
132 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
133 #
134 # Example:
135 # Configure resource requests and limits
136 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
137 # Minimum memory for development is 2 CPU cores and 4GB memory
138 # Minimum memory for production is 4 CPU cores and 8GB memory
139#resources:
140# limits:
141# cpu: 2
142# memory: 4Gi
143# requests:
144# cpu: 2
145# memory: 4Gi