blob: 58e34b78d60ed005371d5a0b2518dfe300ec4ca0 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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.
Mike Elliottd32d36e2018-02-12 15:54:03 -050014# Default values for mariadb.
15# This is a YAML-formatted file.
16# Declare variables to be passed into your templates.
jmacc4f04d32018-10-12 18:24:24 +000017#################################################################
18# Global configuration defaults.
19#################################################################
20global:
Mike Elliottd32d36e2018-02-12 15:54:03 -050021 nodePortPrefix: 302
jmacc4f04d32018-10-12 18:24:24 +000022 nodePortPrefixExt: 304
23 repository: nexus3.onap.org:10001
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020024 readinessImage: onap/oom/readiness:3.0.1
Sylvain Desbureaux23a38b32020-11-20 08:57:12 +010025 ubuntuInitRepository: docker.io
seshukm0df1f8e2020-08-17 21:45:49 +053026 mariadbGalera:
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010027 nameOverride: &mariadbName mariadb-galera
seshukm0df1f8e2020-08-17 21:45:49 +053028 serviceName: mariadb-galera
29 servicePort: "3306"
30 migration:
31 enabled: false
32 dbHost: mariadb-galera
33 dbPort: 3306
34 dbUser: root
35 dbPassword: secretpassword
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010036
37readinessCheck:
38 wait_for:
39 - *mariadbName
40
jmacc4f04d32018-10-12 18:24:24 +000041#################################################################
Krzysztof Opasiak2f8f4b62020-03-04 23:06:16 +010042# Secrets metaconfig
43#################################################################
44secrets:
45 - uid: db-root-pass
46 name: '{{ include "common.release" . }}-so-mariadb-root-pass'
47 type: password
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010048 externalSecret: '{{ tpl (default "" .Values.db.rootPasswordExternalSecret) . }}'
Krzysztof Opasiak2f8f4b62020-03-04 23:06:16 +010049 password: '{{ .Values.db.rootPassword }}'
50 passwordPolicy: required
51 - uid: db-backup-creds
52 name: '{{ include "common.release" . }}-so-mariadb-backup-creds'
53 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010054 externalSecret: '{{ tpl (default "" .Values.db.backupCredsExternalSecret) . }}'
Krzysztof Opasiak2f8f4b62020-03-04 23:06:16 +010055 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
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010062 - uid: db-user-creds
63 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010064 externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010065 login: '{{ .Values.db.userName }}'
66 password: '{{ .Values.db.userPassword }}'
67 - uid: db-admin-creds
68 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010069 externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010070 login: '{{ .Values.db.adminName }}'
71 password: '{{ .Values.db.adminPassword }}'
72 - uid: camunda-db-creds
73 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010074 externalSecret: '{{ tpl (default "" .Values.db.camunda.dbCredsExternalSecret) . }}'
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010075 login: '{{ .Values.db.camunda.userName }}'
76 password: '{{ .Values.db.camunda.password }}'
77 - uid: request-db-creds
78 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010079 externalSecret: '{{ tpl (default "" .Values.db.request.dbCredsExternalSecret) . }}'
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010080 login: '{{ .Values.db.request.userName }}'
81 password: '{{ .Values.db.request.password }}'
82 - uid: catalog-db-creds
83 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010084 externalSecret: '{{ tpl (default "" .Values.db.catalog.dbCredsExternalSecret) . }}'
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010085 login: '{{ .Values.db.catalog.userName }}'
86 password: '{{ .Values.db.catalog.password }}'
rope2524df55192020-08-24 13:55:58 +010087 - 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 }}'
Krzysztof Opasiak2f8f4b62020-03-04 23:06:16 +010092
93#################################################################
jmacc4f04d32018-10-12 18:24:24 +000094# Application configuration defaults.
95#################################################################
Mike Elliottd32d36e2018-02-12 15:54:03 -050096# application image
97repository: nexus3.onap.org:10001
Ramesh Parthasarathya4aaf362019-03-13 20:59:51 +000098image: mariadb:10.1.38
Mike Elliottd32d36e2018-02-12 15:54:03 -050099pullPolicy: Always
Mandeep Khinda0fe4eb72018-04-20 21:02:45 +0000100ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
jmacc4f04d32018-10-12 18:24:24 +0000101
Krzysztof Opasiak2f8f4b62020-03-04 23:06:16 +0100102# db config
103db:
104 rootPassword: secretpassword
105 # rootPasswordExternalSecret: some secret
106 backupPassword: secretpassword
107 backupUser: root
108 # backupCredsExternalSecret: some secret
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +0100109 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
rope2524df55192020-08-24 13:55:58 +0100127 nfvo:
128 userName: nfvouser
129 # dbCredsExternalSecret: some secret
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +0100130
Mike Elliottd32d36e2018-02-12 15:54:03 -0500131# application configuration
132config:
Mandeep Khinda0fe4eb72018-04-20 21:02:45 +0000133 # gerrit branch where the latest heat code is checked in
Ramesh Parthasarathybef9c7b2019-03-01 21:21:20 +0000134 gerritBranch: master
Mandeep Khinda0fe4eb72018-04-20 21:02:45 +0000135 # gerrit project where the latest heat code is checked in
136 gerritProject: http://gerrit.onap.org/r/so/docker-config.git
Mike Elliottd32d36e2018-02-12 15:54:03 -0500137# default number of instances
Mike Elliottd32d36e2018-02-12 15:54:03 -0500138nodeSelector: {}
Mike Elliottd32d36e2018-02-12 15:54:03 -0500139affinity: {}
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000140
141ingress:
142 enabled: false
143
144# Resource Limit flavor
145flavor: small
146
147resources:
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
Mike Elliottd32d36e2018-02-12 15:54:03 -0500164persistence:
165 enabled: true
Mike Elliottd32d36e2018-02-12 15:54:03 -0500166 ## 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
Mike Elliottd32d36e2018-02-12 15:54:03 -0500171 ## 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
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000181
Mike Elliottd32d36e2018-02-12 15:54:03 -0500182 mountPath: /dockerdata-nfs
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000183 mountSubPath: so/migration
farida azmy87f46222021-04-06 15:25:15 +0200184
185#Pods Service Account
186serviceAccount:
187 nameOverride: so-mariadb
188 roles:
189 - read