Merge "[CONSUL] Add limits to consul chart."
[oom.git] / kubernetes / so / components / so-mariadb / values.yaml
1 # Copyright © 2017 Amdocs, 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 # Default values for mariadb.
15 # This is a YAML-formatted file.
16 # Declare variables to be passed into your templates.
17 #################################################################
18 # Global configuration defaults.
19 #################################################################
20 global:
21   nodePortPrefix: 302
22   nodePortPrefixExt: 304
23   repository: nexus3.onap.org:10001
24   readinessImage: onap/oom/readiness:3.0.1
25   ubuntuInitRepository: registry.hub.docker.com
26   mariadbGalera:
27     nameOverride: mariadb-galera
28     serviceName: mariadb-galera
29     servicePort: "3306"
30   migration:
31     enabled: false
32     dbHost: mariadb-galera
33     dbPort: 3306
34     dbUser: root
35     dbPassword: secretpassword
36 #################################################################
37 # Secrets metaconfig
38 #################################################################
39 secrets:
40   - uid: db-root-pass
41     name: '{{ include "common.release" . }}-so-mariadb-root-pass'
42     type: password
43     externalSecret: '{{ tpl (default "" .Values.db.rootPasswordExternalSecret) . }}'
44     password: '{{ .Values.db.rootPassword }}'
45     passwordPolicy: required
46   - uid: db-backup-creds
47     name: '{{ include "common.release" . }}-so-mariadb-backup-creds'
48     type: basicAuth
49     externalSecret: '{{ tpl (default "" .Values.db.backupCredsExternalSecret) . }}'
50     login: '{{ .Values.db.backupUser }}'
51     password: '{{ .Values.db.backupPassword }}'
52     passwordPolicy: required
53     annotations:
54       helm.sh/hook: pre-upgrade,pre-install
55       helm.sh/hook-weight: "0"
56       helm.sh/hook-delete-policy: before-hook-creation
57   - uid: db-user-creds
58     type: basicAuth
59     externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
60     login: '{{ .Values.db.userName }}'
61     password: '{{ .Values.db.userPassword }}'
62   - uid: db-admin-creds
63     type: basicAuth
64     externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
65     login: '{{ .Values.db.adminName }}'
66     password: '{{ .Values.db.adminPassword }}'
67   - uid: camunda-db-creds
68     type: basicAuth
69     externalSecret: '{{ tpl (default "" .Values.db.camunda.dbCredsExternalSecret) . }}'
70     login: '{{ .Values.db.camunda.userName }}'
71     password: '{{ .Values.db.camunda.password }}'
72   - uid: request-db-creds
73     type: basicAuth
74     externalSecret: '{{ tpl (default "" .Values.db.request.dbCredsExternalSecret) . }}'
75     login: '{{ .Values.db.request.userName }}'
76     password: '{{ .Values.db.request.password }}'
77   - uid: catalog-db-creds
78     type: basicAuth
79     externalSecret: '{{ tpl (default "" .Values.db.catalog.dbCredsExternalSecret) . }}'
80     login: '{{ .Values.db.catalog.userName }}'
81     password: '{{ .Values.db.catalog.password }}'
82   - uid: nfvo-db-creds
83     type: basicAuth
84     externalSecret: '{{ tpl (default "" .Values.db.nfvo.dbCredsExternalSecret) . }}'
85     login: '{{ .Values.db.nfvo.userName }}'
86     password: '{{ .Values.db.nfvo.password }}'
87
88 #################################################################
89 # Application configuration defaults.
90 #################################################################
91 # application image
92 repository: nexus3.onap.org:10001
93 image: mariadb:10.1.38
94 pullPolicy: Always
95 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
96
97 # db config
98 db:
99   rootPassword: secretpassword
100   # rootPasswordExternalSecret: some secret
101   backupPassword: secretpassword
102   backupUser: root
103   # backupCredsExternalSecret: some secret
104   userName: so_user
105   userPassword: so_User123
106   # userCredsExternalSecret: some secret
107   adminName: so_admin
108   adminPassword: so_Admin123
109   # adminCredsExternalSecret: some secret
110   camunda:
111     userName: camundauser
112     password: camunda123
113     # dbCredsExternalSecret: some secret
114   request:
115     userName: requestuser
116     password: request123
117     # dbCredsExternalSecret: some secret
118   catalog:
119     userName: cataloguser
120     password: catalog123
121     # dbCredsExternalSecret: some secret
122   nfvo:
123     userName: nfvouser
124     # dbCredsExternalSecret: some secret
125
126 # application configuration
127 config:
128   # gerrit branch where the latest heat code is checked in
129   gerritBranch: master
130   # gerrit project where the latest heat code is checked in
131   gerritProject: http://gerrit.onap.org/r/so/docker-config.git
132 # default number of instances
133 nodeSelector: {}
134 affinity: {}
135
136 ingress:
137   enabled: false
138
139 # Resource Limit flavor
140 flavor: small
141
142 resources:
143   small:
144     limits:
145       cpu: 2
146       memory: 4Gi
147     requests:
148       cpu: 1
149       memory: 2Gi
150   large:
151     limits:
152       cpu: 4
153       memory: 8Gi
154     requests:
155       cpu: 2
156       memory: 4Gi
157   unlimited: {}
158
159 persistence:
160   enabled: true
161   ## A manually managed Persistent Volume and Claim
162   ## Requires persistence.enabled: true
163   ## If defined, PVC must be created manually before volume will be bound
164   # existingClaim:
165   volumeReclaimPolicy: Retain
166   ## database data Persistent Volume Storage Class
167   ## If defined, storageClassName: <storageClass>
168   ## If set to "-", storageClassName: "", which disables dynamic provisioning
169   ## If undefined (the default) or set to null, no storageClassName spec is
170   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
171   ##   GKE, AWS & OpenStack)
172   ##
173   # storageClass: "-"
174   accessMode: ReadWriteMany
175   size: 2Gi
176
177   mountPath: /dockerdata-nfs
178   mountSubPath: so/migration