blob: 0a5a056464ea7786d352d19bba5dbe897060bfee [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
Mandeep Khinda0fe4eb72018-04-20 21:02:45 +000025 ubuntuInitRepository: registry.hub.docker.com
jmacc4f04d32018-10-12 18:24:24 +000026
27#################################################################
Krzysztof Opasiak2f8f4b62020-03-04 23:06:16 +010028# Secrets metaconfig
29#################################################################
30secrets:
31 - uid: db-root-pass
32 name: '{{ include "common.release" . }}-so-mariadb-root-pass'
33 type: password
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010034 externalSecret: '{{ tpl (default "" .Values.db.rootPasswordExternalSecret) . }}'
Krzysztof Opasiak2f8f4b62020-03-04 23:06:16 +010035 password: '{{ .Values.db.rootPassword }}'
36 passwordPolicy: required
37 - uid: db-backup-creds
38 name: '{{ include "common.release" . }}-so-mariadb-backup-creds'
39 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010040 externalSecret: '{{ tpl (default "" .Values.db.backupCredsExternalSecret) . }}'
Krzysztof Opasiak2f8f4b62020-03-04 23:06:16 +010041 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
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010048 - uid: db-user-creds
49 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010050 externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010051 login: '{{ .Values.db.userName }}'
52 password: '{{ .Values.db.userPassword }}'
53 - uid: db-admin-creds
54 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010055 externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}'
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010056 login: '{{ .Values.db.adminName }}'
57 password: '{{ .Values.db.adminPassword }}'
58 - uid: camunda-db-creds
59 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010060 externalSecret: '{{ tpl (default "" .Values.db.camunda.dbCredsExternalSecret) . }}'
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010061 login: '{{ .Values.db.camunda.userName }}'
62 password: '{{ .Values.db.camunda.password }}'
63 - uid: request-db-creds
64 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010065 externalSecret: '{{ tpl (default "" .Values.db.request.dbCredsExternalSecret) . }}'
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010066 login: '{{ .Values.db.request.userName }}'
67 password: '{{ .Values.db.request.password }}'
68 - uid: catalog-db-creds
69 type: basicAuth
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010070 externalSecret: '{{ tpl (default "" .Values.db.catalog.dbCredsExternalSecret) . }}'
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010071 login: '{{ .Values.db.catalog.userName }}'
72 password: '{{ .Values.db.catalog.password }}'
rope2524df55192020-08-24 13:55:58 +010073 - 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 }}'
Krzysztof Opasiak2f8f4b62020-03-04 23:06:16 +010078
79#################################################################
jmacc4f04d32018-10-12 18:24:24 +000080# Application configuration defaults.
81#################################################################
Mike Elliottd32d36e2018-02-12 15:54:03 -050082# application image
83repository: nexus3.onap.org:10001
Ramesh Parthasarathya4aaf362019-03-13 20:59:51 +000084image: mariadb:10.1.38
Mike Elliottd32d36e2018-02-12 15:54:03 -050085pullPolicy: Always
Mandeep Khinda0fe4eb72018-04-20 21:02:45 +000086ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
jmacc4f04d32018-10-12 18:24:24 +000087
Krzysztof Opasiak2f8f4b62020-03-04 23:06:16 +010088# db config
89db:
90 rootPassword: secretpassword
91 # rootPasswordExternalSecret: some secret
92 backupPassword: secretpassword
93 backupUser: root
94 # backupCredsExternalSecret: some secret
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +010095 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
rope2524df55192020-08-24 13:55:58 +0100113 nfvo:
114 userName: nfvouser
115 # dbCredsExternalSecret: some secret
Krzysztof Opasiakf68b7282020-03-25 23:22:46 +0100116
Mike Elliottd32d36e2018-02-12 15:54:03 -0500117# application configuration
118config:
Mandeep Khinda0fe4eb72018-04-20 21:02:45 +0000119 # gerrit branch where the latest heat code is checked in
Ramesh Parthasarathybef9c7b2019-03-01 21:21:20 +0000120 gerritBranch: master
Mandeep Khinda0fe4eb72018-04-20 21:02:45 +0000121 # gerrit project where the latest heat code is checked in
122 gerritProject: http://gerrit.onap.org/r/so/docker-config.git
Mike Elliottd32d36e2018-02-12 15:54:03 -0500123# default number of instances
Mike Elliottd32d36e2018-02-12 15:54:03 -0500124nodeSelector: {}
Mike Elliottd32d36e2018-02-12 15:54:03 -0500125affinity: {}
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000126
127ingress:
128 enabled: false
129
130# Resource Limit flavor
131flavor: small
132
133resources:
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
Mike Elliottd32d36e2018-02-12 15:54:03 -0500150persistence:
151 enabled: true
Mike Elliottd32d36e2018-02-12 15:54:03 -0500152 ## 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
Mike Elliottd32d36e2018-02-12 15:54:03 -0500157 ## 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
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000167
Mike Elliottd32d36e2018-02-12 15:54:03 -0500168 mountPath: /dockerdata-nfs
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000169 mountSubPath: so/migration