blob: b653ba1a41f59797230d6b367bef64a506c5f42b [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
Sylvain Desbureaux335781f2020-09-23 10:31:50 +0200128flavor: small
129
130#resources: {}
131# We usually recommend not to specify default resources and to leave this as a conscious
132# choice for the user. This also increases chances charts run on environments with little
133# resources, such as Minikube. If you do want to specify resources, uncomment the following
134# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
135#
136# Example:
137# Configure resource requests and limits
138# ref: http://kubernetes.io/docs/user-guide/compute-resources/
139# Minimum memory for development is 2 CPU cores and 4GB memory
140# Minimum memory for production is 4 CPU cores and 8GB memory
141resources:
142 small:
143 limits:
144 cpu: 100m
145 memory: 300Mi
146 requests:
147 cpu: 10m
148 memory: 90Mi
149 large:
150 limits:
151 cpu: 2
152 memory: 4Gi
153 requests:
154 cpu: 1
155 memory: 2Gi
156 unlimited: {}