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