Merge "[SO-ETSI-NFVO] Add SO DB and NFVO DB Credentials to NFVO NS LCM Pod for DB...
[oom.git] / kubernetes / so / values.yaml
1 # Copyright © 2018 AT&T USA
2 # Copyright © 2020 Huawei
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 #################################################################
15 # Global configuration defaults.
16 #################################################################
17 global:
18   nodePortPrefix: 302
19   nodePortPrefixExt: 304
20   repository: nexus3.onap.org:10001
21   readinessImage: onap/oom/readiness:3.0.1
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24   soBaseImage: onap/so/base-image:1.0
25   aafAgentImage: onap/aaf/aaf_agent:2.1.20
26   mariadbGalera:
27     nameOverride: mariadb-galera
28     serviceName: mariadb-galera
29     servicePort: '3306'
30     # mariadbRootPassword: secretpassword
31     # rootPasswordExternalSecret: some secret
32     #This flag allows SO to instantiate its own mariadb-galera cluster,
33     #serviceName and nameOverride should be so-mariadb-galera if this flag is enabled
34     localCluster: false
35   persistence:
36     mountPath: /dockerdata-nfs
37   #This configuration specifies Service and port for SDNC OAM interface
38   sdncOamService: sdnc-oam
39   sdncOamPort: 8282
40   #This configuration will run the migration. The configurations are for backing up the data
41   #from DB and then restoring it to the present versions preferred DB.
42   migration:
43     enabled: false
44     dbHost: mariadb-galera
45     dbPort: 3306
46     dbUser: root
47     dbPassword: secretpassword
48     # dbCredsExternalSecret: some secret
49   msbEnabled: true
50   security:
51     aaf:
52       enabled: false
53   aaf:
54     auth:
55       header: Basic c29Ac28ub25hcC5vcmc6ZGVtbzEyMzQ1Ngo=
56       encrypted: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
57   app:
58     siteName: onapheat
59     auth: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
60     defaultCloudOwner: onap
61     msoKey: 07a7159d3bf51a0e53be7a8f89699be7
62   client:
63     certs:
64       truststore: /app/client/org.onap.so.trust.jks
65       keystore: /app/client/org.onap.so.jks
66       trustStorePassword: LHN4Iy5DKlcpXXdWZ0pDNmNjRkhJIzpI
67       keyStorePassword: c280b25hcA==
68   certificates:
69     path: /etc/ssl/certs
70     share_path: /usr/local/share/ca-certificates/
71
72 #################################################################
73 # Secrets metaconfig
74 #################################################################
75 secrets:
76   - uid: db-root-pass
77     name: &dbRootPassSecretName '{{ include "common.release" . }}-so-db-root-pass'
78     type: password
79     externalSecret: '{{ ternary .Values.global.mariadbGalera.rootPasswordExternalSecret (default (include "common.mariadb.secret.rootPassSecretName" (dict "dot" . "chartName" .Values.global.mariadbGalera.nameOverride)) .Values.global.mariadbGalera.rootPasswordExternalSecret) .Values.global.mariadbGalera.localCluster }}'
80     password: '{{ .Values.global.mariadbGalera.mariadbRootpassword }}'
81   - uid: db-backup-creds
82     name: &dbBackupCredsSecretName '{{ include "common.release" . }}-so-db-backup-creds'
83     type: basicAuth
84     externalSecret: '{{ ternary .Values.global.migration.dbCredsExternalSecret "migrationDisabled" .Values.global.migration.enabled }}'
85     login: '{{ ternary .Values.global.migration.dbUser "migrationDisabled" .Values.global.migration.enabled }}'
86     password: '{{ ternary .Values.global.migration.dbPassword "migrationDisabled" .Values.global.migration.enabled }}'
87     passwordPolicy: required
88     annotations:
89       helm.sh/hook: pre-upgrade,pre-install
90       helm.sh/hook-weight: '0'
91       helm.sh/hook-delete-policy: before-hook-creation
92   - uid: db-user-creds
93     name: &dbUserCredsSecretName '{{ include "common.release" . }}-so-db-user-creds'
94     type: basicAuth
95     externalSecret: '{{ .Values.dbCreds.userCredsExternalSecret }}'
96     login: '{{ .Values.dbCreds.userName }}'
97     password: '{{ .Values.dbCreds.userPassword }}'
98     passwordPolicy: generate
99   - uid: db-admin-creds
100     name: &dbAdminCredsSecretName '{{ include "common.release" . }}-so-db-admin-creds'
101     type: basicAuth
102     externalSecret: '{{ .Values.dbCreds.adminCredsExternalSecret }}'
103     login: '{{ .Values.dbCreds.adminName }}'
104     password: '{{ .Values.dbCreds.adminPassword }}'
105     passwordPolicy: generate
106   - uid: 'so-onap-certs'
107     name: &so-certs '{{ include "common.release" . }}-so-certs'
108     externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
109     type: generic
110     filePaths:
111       - resources/config/certificates/msb-ca.crt
112   - uid: "mso-key"
113     name: &mso-key '{{ include "common.release" . }}-mso-key'
114     type: password
115     password: '{{ .Values.global.app.msoKey }}'
116   - uid: mso-oof-auth
117     name: &mso-oof-auth '{{ include "common.release" . }}-mso-oof-auth'
118     type: basicAuth
119     login: '{{ .Values.mso.oof.login }}'
120     password: '{{ .Values.mso.oof.password }}'
121     passwordPolicy: required
122
123 aafConfig:
124   permission_user: 1000
125   permission_group: 999
126
127 aaf:
128   trustore: org.onap.so.trust.jks
129
130 #################################################################
131 # Application configuration defaults.
132 #################################################################
133
134 dbSecrets: &dbSecrets
135   userCredsExternalSecret: *dbUserCredsSecretName
136   adminCredsExternalSecret: *dbAdminCredsSecretName
137
138 # unused in this, just to pass to subcharts
139 dbCreds:
140   userName: so_user
141   adminName: so_admin
142
143 repository: nexus3.onap.org:10001
144 image: onap/so/api-handler-infra:1.6.4
145 pullPolicy: Always
146 replicaCount: 1
147 minReadySeconds: 10
148 containerPort: &containerPort 8080
149 logPath: ./logs/apih/
150 app: api-handler-infra
151 service:
152   type: NodePort
153   nodePort: 77
154   internalPort: *containerPort
155   externalPort: *containerPort
156   portName: so-apih-port
157 updateStrategy:
158   type: RollingUpdate
159   maxUnavailable: 1
160   maxSurge: 1
161
162 #################################################################
163 # soHelpers part
164 #################################################################
165 soHelpers:
166   nameOverride: so-apih-cert-init
167   certInitializer:
168     nameOverride: so-apih-cert-init
169   credsPath: /opt/app/osaaf/local
170   certSecret: *so-certs
171   containerPort: *containerPort
172
173 # Resource Limit flavor -By Default using small
174 flavor: small
175 # Segregation for Different environment (Small and Large)
176 persistence:
177   certificatesPath: /certificates
178 resources:
179   small:
180     limits:
181       cpu: 2000m
182       memory: 4Gi
183     requests:
184       cpu: 500m
185       memory: 1Gi
186   large:
187     limits:
188       cpu: 4000m
189       memory: 8Gi
190     requests:
191       cpu: 1000m
192       memory: 2Gi
193   unlimited: {}
194
195 nodeSelector: {}
196 affinity: {}
197
198 # application configuration
199 config:
200   logstashServiceName: log-ls
201   logstashPort: 5044
202
203 #Used only if localCluster is enabled. Instantiates SO's own cassandra cluster
204 #helm deploy demo local/onap --namespace onap --verbose --set so.enabled=true \
205 #                                                       --set so.global.mariadbGalera.localCluster=true \
206 #                                                       --set so.global.mariadbGalera.nameOverride=so-mariadb-galera \
207 #                                                       --set so.global.mariadbGalera.serviceName=so-mariadb-galera
208 mariadb-galera:
209   config:
210     mariadbRootPasswordExternalSecret: *dbRootPassSecretName
211   nameOverride: so-mariadb-galera
212   replicaCount: 1
213   service:
214     name: so-mariadb-galera
215   persistence:
216     mountSubPath: so/mariadb-galera/data
217     enabled: true
218
219 ingress:
220   enabled: false
221   service:
222     - baseaddr: 'so.api'
223       name: 'so'
224       port: 8080
225   config:
226     ssl: 'none'
227
228 mso:
229   adapters:
230     requestDb:
231       auth: Basic YnBlbDpwYXNzd29yZDEk
232   camundaAuth: AE2E9BE6EF9249085AF98689C4EE087736A5500629A72F35068FFB88813A023581DD6E765071F1C04075B36EA4213A
233   sdc:
234     client:
235       auth: 878785F4F31BC9CFA5AB52A172008212D8845ED2DE08AD5E56AF114720A4E49768B8F95CDA2EB971765D28EDCDAA24
236   aai:
237     auth: 6E081E10B1CA43A843E303733A74D9B23B601A6E22A21C7EF2C7F15A42F81A1A4E85E65268C2661F71321052C7F3E55B96A8E1E951F8BF6F
238   oof:
239     login: test
240     password: testpwd
241   so:
242     operationalEnv:
243       dmaap:
244         auth: 51EA5414022D7BE536E7516C4D1A6361416921849B72C0D6FC1C7F262FD9F2BBC2AD124190A332D9845A188AD80955567A4F975C84C221EEA8243BFD92FFE6896CDD1EA16ADD34E1E3D47D4A
245   health:
246     auth: basic bXNvX2FkbWlufHBhc3N3b3JkMSQ=
247
248 so-appc-orchestrator:
249   enabled: true
250   db:
251     <<: *dbSecrets
252
253 so-bpmn-infra:
254   db:
255     <<: *dbSecrets
256
257 so-catalog-db-adapter:
258   enabled: true
259   db:
260     <<: *dbSecrets
261
262 so-etsi-nfvo-ns-lcm:
263   enabled: true
264   db:
265     <<: *dbSecrets
266
267 so-monitoring:
268   enabled: true
269   db:
270     <<: *dbSecrets
271
272 so-openstack-adapter:
273   enabled: true
274   db:
275     <<: *dbSecrets
276
277 so-request-db-adapter:
278   db:
279     <<: *dbSecrets
280
281 so-sdc-controller:
282   db:
283     <<: *dbSecrets
284
285 so-sdnc-adapter:
286   enabled: true
287   db:
288     <<: *dbSecrets
289
290 so-ve-vnfm-adapter:
291   enabled: true
292
293 so-vfc-adapter:
294   enabled: true
295   db:
296     <<: *dbSecrets
297
298 so-nssmf-adapter:
299   enabled: true
300   db:
301     <<: *dbSecrets
302
303 so-oof-adapter:
304   enabled: true
305   db:
306     <<: *dbSecrets
307   mso:
308     msoKeySecret: *mso-key
309     camundaAuth: AE2E9BE6EF9249085AF98689C4EE087736A5500629A72F35068FFB88813A023581DD6E765071F1C04075B36EA4213A
310     oof:
311       authSecret: *mso-oof-auth
312
313 so-vnfm-adapter:
314   enabled: true
315
316 so-mariadb:
317   db:
318     rootPasswordExternalSecretLocalDb: *dbRootPassSecretName
319     rootPasswordExternalSecret: '{{ ternary .Values.db.rootPasswordExternalSecretLocalDb (include "common.mariadb.secret.rootPassSecretName" (dict "dot" . "chartName" .Values.global.mariadbGalera.nameOverride)) .Values.global.mariadbGalera.localCluster }}'
320     backupCredsExternalSecret: *dbBackupCredsSecretName
321     userCredsExternalSecret: *dbUserCredsSecretName
322     adminCredsExternalSecret: *dbAdminCredsSecretName