[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / common / postgres / values.yaml
1 # 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 #################################################################
18 global:
19   nodePortPrefix: 302
20   persistence: {}
21   readinessImage: onap/oom/readiness:3.0.1
22
23   # envsusbt
24   envsubstImage: dibi/envsubst
25
26 #################################################################
27 # Secrets metaconfig
28 #################################################################
29 secrets:
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 #################################################################
45 # Application configuration defaults.
46 #################################################################
47
48 # BusyBox image
49 busyboxRepository: docker.io
50 busyboxImage: library/busybox:latest
51
52 postgresRepository: crunchydata
53 image: crunchy-postgres:centos7-10.11-4.2.1
54 pullPolicy: Always
55
56 # application configuration
57 config:
58   pgUserName: testuser
59   pgDatabase: userdb
60   # pgPrimaryPassword: password
61   # pgUserPassword: password
62   # pgRootPassword: password
63
64 container:
65   name:
66     primary: pgset-primary
67     replica: pgset-replica
68
69 nodeSelector: {}
70
71 affinity: {}
72
73 # probe configuration parameters
74 liveness:
75   initialDelaySeconds: 300
76   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
82 readiness:
83   initialDelaySeconds: 10
84   periodSeconds: 10
85
86 ## Persist data to a persitent volume
87 persistence:
88   enabled: true
89
90   ## 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
108 service:
109   type: ClusterIP
110   name: pgset
111   portName: tcp-postgres
112   externalPort: 5432
113   internalPort: 5432
114   type2: ClusterIP
115   name2: tcp-pgset-primary
116   portName2: tcp-postgres
117   externalPort2: 5432
118   internalPort2: 5432
119   type3: ClusterIP
120   name3: tcp-pgset-replica
121   portName3: tcp-postgres
122   externalPort3: 5432
123   internalPort3: 5432
124
125 ingress:
126   enabled: false
127
128 flavor: 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
141 resources:
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: {}