[DMAAP] DMaaP ServiceMesh compatibility
[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: docker.io
26   mariadbGalera:
27     nameOverride: &mariadbName 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 readinessCheck:
38   wait_for:
39     - *mariadbName
40
41 #################################################################
42 # Secrets metaconfig
43 #################################################################
44 secrets:
45   - uid: db-root-pass
46     name: '{{ include "common.release" . }}-so-mariadb-root-pass'
47     type: password
48     externalSecret: '{{ tpl (default "" .Values.db.rootPasswordExternalSecret) . }}'
49     password: '{{ .Values.db.rootPassword }}'
50     passwordPolicy: required
51   - uid: db-backup-creds
52     name: '{{ include "common.release" . }}-so-mariadb-backup-creds'
53     type: basicAuth
54     externalSecret: '{{ tpl (default "" .Values.db.backupCredsExternalSecret) . }}'
55     login: '{{ .Values.db.backupUser }}'
56     password: '{{ .Values.db.backupPassword }}'
57     passwordPolicy: required
58     annotations:
59       helm.sh/hook: pre-upgrade,pre-install
60       helm.sh/hook-weight: "0"
61       helm.sh/hook-delete-policy: before-hook-creation
62   - uid: db-user-creds
63     type: basicAuth
64     externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
65     login: '{{ .Values.db.userName }}'
66     password: '{{ .Values.db.userPassword }}'
67   - uid: db-admin-creds
68     type: basicAuth
69     externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
70     login: '{{ .Values.db.adminName }}'
71     password: '{{ .Values.db.adminPassword }}'
72   - uid: camunda-db-creds
73     type: basicAuth
74     externalSecret: '{{ tpl (default "" .Values.db.camunda.dbCredsExternalSecret) . }}'
75     login: '{{ .Values.db.camunda.userName }}'
76     password: '{{ .Values.db.camunda.password }}'
77   - uid: request-db-creds
78     type: basicAuth
79     externalSecret: '{{ tpl (default "" .Values.db.request.dbCredsExternalSecret) . }}'
80     login: '{{ .Values.db.request.userName }}'
81     password: '{{ .Values.db.request.password }}'
82   - uid: catalog-db-creds
83     type: basicAuth
84     externalSecret: '{{ tpl (default "" .Values.db.catalog.dbCredsExternalSecret) . }}'
85     login: '{{ .Values.db.catalog.userName }}'
86     password: '{{ .Values.db.catalog.password }}'
87   - uid: nfvo-db-creds
88     type: basicAuth
89     externalSecret: '{{ tpl (default "" .Values.db.nfvo.dbCredsExternalSecret) . }}'
90     login: '{{ .Values.db.nfvo.userName }}'
91     password: '{{ .Values.db.nfvo.password }}'
92
93 #################################################################
94 # Application configuration defaults.
95 #################################################################
96 # application image
97 repository: nexus3.onap.org:10001
98 image: mariadb:10.1.38
99 pullPolicy: Always
100 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
101
102 # db config
103 db:
104   rootPassword: secretpassword
105   # rootPasswordExternalSecret: some secret
106   backupPassword: secretpassword
107   backupUser: root
108   # backupCredsExternalSecret: some secret
109   userName: so_user
110   userPassword: so_User123
111   # userCredsExternalSecret: some secret
112   adminName: so_admin
113   adminPassword: so_Admin123
114   # adminCredsExternalSecret: some secret
115   camunda:
116     userName: camundauser
117     password: camunda123
118     # dbCredsExternalSecret: some secret
119   request:
120     userName: requestuser
121     password: request123
122     # dbCredsExternalSecret: some secret
123   catalog:
124     userName: cataloguser
125     password: catalog123
126     # dbCredsExternalSecret: some secret
127   nfvo:
128     userName: nfvouser
129     # dbCredsExternalSecret: some secret
130
131 # application configuration
132 config:
133   # gerrit branch where the latest heat code is checked in
134   gerritBranch: master
135   # gerrit project where the latest heat code is checked in
136   gerritProject: http://gerrit.onap.org/r/so/docker-config.git
137 # default number of instances
138 nodeSelector: {}
139 affinity: {}
140
141 ingress:
142   enabled: false
143
144 # Resource Limit flavor
145 flavor: small
146
147 resources:
148   small:
149     limits:
150       cpu: 2
151       memory: 4Gi
152     requests:
153       cpu: 1
154       memory: 2Gi
155   large:
156     limits:
157       cpu: 4
158       memory: 8Gi
159     requests:
160       cpu: 2
161       memory: 4Gi
162   unlimited: {}
163
164 persistence:
165   enabled: true
166   ## A manually managed Persistent Volume and Claim
167   ## Requires persistence.enabled: true
168   ## If defined, PVC must be created manually before volume will be bound
169   # existingClaim:
170   volumeReclaimPolicy: Retain
171   ## database data Persistent Volume Storage Class
172   ## If defined, storageClassName: <storageClass>
173   ## If set to "-", storageClassName: "", which disables dynamic provisioning
174   ## If undefined (the default) or set to null, no storageClassName spec is
175   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
176   ##   GKE, AWS & OpenStack)
177   ##
178   # storageClass: "-"
179   accessMode: ReadWriteMany
180   size: 2Gi
181
182   mountPath: /dockerdata-nfs
183   mountSubPath: so/migration
184
185 #Pods Service Account
186 serviceAccount:
187   nameOverride: so-mariadb
188   roles:
189     - read