blob: 32e6e4776d459ea2c54bc4f6006daa773757ada7 [file] [log] [blame]
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00001# Copyright © 2018 AT&T USA
seshukm0df1f8e2020-08-17 21:45:49 +05302# Copyright © 2020 Huawei
Sylvain Desbureauxd3114052021-02-23 16:45:52 +01003# Copyright © 2021 Orange
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00004# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
jmacc4f04d32018-10-12 18:24:24 +000015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
20 nodePortPrefixExt: 304
seshukm0df1f8e2020-08-17 21:45:49 +053021 aafAgentImage: onap/aaf/aaf_agent:2.1.20
Maciej Wereskidf9ba222021-11-05 14:38:18 +000022 centralizedLoggingEnabled: true
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000023 mariadbGalera:
24 nameOverride: mariadb-galera
25 serviceName: mariadb-galera
rope2524d3f3682020-09-02 20:49:21 +010026 servicePort: '3306'
krishnaa9692b606b2020-10-30 11:29:21 +053027 service: mariadb-galera
28 internalPort: '3306'
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010029 # mariadbRootPassword: secretpassword
30 # rootPasswordExternalSecret: some secret
sarada prasad sahooae2c7342019-07-10 14:40:12 +053031 #This flag allows SO to instantiate its own mariadb-galera cluster,
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000032 #serviceName and nameOverride should be so-mariadb-galera if this flag is enabled
33 localCluster: false
jmacc4f04d32018-10-12 18:24:24 +000034 persistence:
35 mountPath: /dockerdata-nfs
Konrad Bańka7bde1d62020-04-01 16:09:11 +020036 #This configuration specifies Service and port for SDNC OAM interface
37 sdncOamService: sdnc-oam
38 sdncOamPort: 8282
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000039 #This configuration will run the migration. The configurations are for backing up the data
40 #from DB and then restoring it to the present versions preferred DB.
41 migration:
42 enabled: false
43 dbHost: mariadb-galera
44 dbPort: 3306
45 dbUser: root
46 dbPassword: secretpassword
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010047 # dbCredsExternalSecret: some secret
rope252c5e14bb2020-01-02 11:03:59 +000048 msbEnabled: true
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +000049 security:
50 aaf:
51 enabled: false
52 aaf:
53 auth:
54 header: Basic c29Ac28ub25hcC5vcmc6ZGVtbzEyMzQ1Ngo=
55 encrypted: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
56 app:
57 siteName: onapheat
58 auth: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
59 defaultCloudOwner: onap
sekharhuawei2e799e92020-11-14 17:06:56 +053060
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010061 certificates:
62 path: /etc/ssl/certs
63 share_path: /usr/local/share/ca-certificates/
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010064
efiacor8d3ff802022-11-23 12:13:26 +000065 soSdcListenerKafkaUser: so-sdc-list-user
66
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010067readinessCheck:
68 wait_for:
Prabhjot Singh Sethi46e17562021-08-20 22:40:23 +053069 jobs:
70 - '{{ include "common.release" . }}-so-mariadb-config-job'
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010071
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010072#################################################################
73# Secrets metaconfig
74#################################################################
75secrets:
76 - uid: db-root-pass
77 name: &dbRootPassSecretName '{{ include "common.release" . }}-so-db-root-pass'
78 type: password
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010079 externalSecret: '{{ .Values.global.mariadbGalera.localCluster | ternary
80 .Values.global.mariadbGalera.rootPasswordExternalSecret
81 (default (include "common.mariadb.secret.rootPassSecretName"
82 (dict "dot" . "chartName" .Values.global.mariadbGalera.nameOverride))
83 .Values.global.mariadbGalera.rootPasswordExternalSecret) }}'
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010084 password: '{{ .Values.global.mariadbGalera.mariadbRootpassword }}'
85 - uid: db-backup-creds
86 name: &dbBackupCredsSecretName '{{ include "common.release" . }}-so-db-backup-creds'
87 type: basicAuth
88 externalSecret: '{{ ternary .Values.global.migration.dbCredsExternalSecret "migrationDisabled" .Values.global.migration.enabled }}'
89 login: '{{ ternary .Values.global.migration.dbUser "migrationDisabled" .Values.global.migration.enabled }}'
90 password: '{{ ternary .Values.global.migration.dbPassword "migrationDisabled" .Values.global.migration.enabled }}'
91 passwordPolicy: required
92 annotations:
93 helm.sh/hook: pre-upgrade,pre-install
rope2524d3f3682020-09-02 20:49:21 +010094 helm.sh/hook-weight: '0'
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010095 helm.sh/hook-delete-policy: before-hook-creation
96 - uid: db-user-creds
97 name: &dbUserCredsSecretName '{{ include "common.release" . }}-so-db-user-creds'
98 type: basicAuth
99 externalSecret: '{{ .Values.dbCreds.userCredsExternalSecret }}'
100 login: '{{ .Values.dbCreds.userName }}'
101 password: '{{ .Values.dbCreds.userPassword }}'
102 passwordPolicy: generate
103 - uid: db-admin-creds
104 name: &dbAdminCredsSecretName '{{ include "common.release" . }}-so-db-admin-creds'
105 type: basicAuth
106 externalSecret: '{{ .Values.dbCreds.adminCredsExternalSecret }}'
107 login: '{{ .Values.dbCreds.adminName }}'
108 password: '{{ .Values.dbCreds.adminPassword }}'
109 passwordPolicy: generate
sekharhuawei2e799e92020-11-14 17:06:56 +0530110 - uid: 'mso-key'
Priyadharshini7dc03852020-08-27 04:36:03 -0700111 name: &mso-key '{{ include "common.release" . }}-mso-key'
112 type: password
sekharhuawei2e799e92020-11-14 17:06:56 +0530113 password: '{{ .Values.mso.msoKey }}'
Priyadharshini7dc03852020-08-27 04:36:03 -0700114 - uid: mso-oof-auth
115 name: &mso-oof-auth '{{ include "common.release" . }}-mso-oof-auth'
116 type: basicAuth
117 login: '{{ .Values.mso.oof.login }}'
118 password: '{{ .Values.mso.oof.password }}'
119 passwordPolicy: required
sekharhuawei2e799e92020-11-14 17:06:56 +0530120 - uid: server-actuator-creds
121 name: &actuator-secrets '{{ include "common.release" . }}-so-server-actuator-creds'
122 type: basicAuth
123 externalSecret: '{{ tpl (default "" .Values.server.actuatorCredsExternalSecret) . }}'
124 login: '{{ .Values.server.actuator.username }}'
125 password: '{{ .Values.server.actuator.password }}'
126 passwordPolicy: required
127 - uid: server-bpel-creds
128 name: &bpel-secrets '{{ include "common.release" . }}-so-server-bpel-creds'
129 type: basicAuth
130 externalSecret: '{{ tpl (default "" .Values.server.bpelCredsExternalSecret) . }}'
131 login: '{{ .Values.server.bpel.username }}'
132 password: '{{ .Values.server.bpel.password }}'
133 passwordPolicy: required
134 - uid: so-aaf-creds
135 name: &aaf-secrets '{{ include "common.release" . }}-so-server-aaf-creds'
136 type: basicAuth
137 externalSecret: '{{ tpl (default "" .Values.server.aafCredsExternalSecret) . }}'
138 login: '{{ .Values.server.aaf.username }}'
139 password: '{{ .Values.server.aaf.password }}'
140 passwordPolicy: required
141 - uid: so-aai-creds
142 name: &aai-secrets '{{ include "common.release" . }}-so-server-aai-creds'
143 type: basicAuth
144 externalSecret: '{{ tpl (default "" .Values.server.aaiCredsExternalSecret) . }}'
145 login: '{{ .Values.server.aai.username }}'
146 password: '{{ .Values.server.aai.password }}'
147 passwordPolicy: required
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100148
seshukm0df1f8e2020-08-17 21:45:49 +0530149aafConfig:
150 permission_user: 1000
151 permission_group: 999
152
153aaf:
154 trustore: org.onap.so.trust.jks
155
jmacc4f04d32018-10-12 18:24:24 +0000156#################################################################
Sylvain Desbureauxc9f47132021-04-07 17:26:25 +0200157# AAF part for Ingress
158#################################################################
159certInitializer:
160 nameOverride: so-tls-cert
161 aafDeployFqi: deployer@people.osaaf.org
162 aafDeployPass: demo123456!
163 # aafDeployCredsExternalSecret: some secret
164 fqdn: so
165 fqi: so@so.onap.org
166 public_fqdn: so.onap.org
167 fqi_namespace: org.onap.so
168 cadi_longitude: '0.0'
169 cadi_latitude: '0.0'
170 app_ns: org.osaaf.aaf
171 credsPath: /opt/app/osaaf/local
172 ingressTlsSecret: '{{ include "common.release" . }}-so-ingress-certs'
173
174#################################################################
jmacc4f04d32018-10-12 18:24:24 +0000175# Application configuration defaults.
176#################################################################
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100177
178dbSecrets: &dbSecrets
179 userCredsExternalSecret: *dbUserCredsSecretName
180 adminCredsExternalSecret: *dbAdminCredsSecretName
181
182# unused in this, just to pass to subcharts
183dbCreds:
184 userName: so_user
185 adminName: so_admin
186
Lukasz Rajewskib6861242022-09-06 13:32:58 +0200187image: onap/so/api-handler-infra:1.11.0
sekharhuawei2e799e92020-11-14 17:06:56 +0530188
189server:
190 aaf:
191 username: so@so.onap.org
192 password: demo123456
193 # aafCredsExternalSecret: some secret
194 aai:
195 username: aai@aai.onap.org
196 password: demo123456!
197 # aaiCredsExternalSecret: some secret
198 actuator:
199 username: mso_admin
200 password: password1$
201 # actuatorCredsExternalSecret: some secret
202 bpel:
203 username: bpel
204 password: password1$
205 # bpelCredsExternalSecret: some secret
206
jmacc4f04d32018-10-12 18:24:24 +0000207pullPolicy: Always
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000208replicaCount: 1
209minReadySeconds: 10
seshukm0df1f8e2020-08-17 21:45:49 +0530210containerPort: &containerPort 8080
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000211logPath: ./logs/apih/
212app: api-handler-infra
213service:
seshukm0df1f8e2020-08-17 21:45:49 +0530214 type: NodePort
215 nodePort: 77
216 internalPort: *containerPort
217 externalPort: *containerPort
Andreas Geissler17be9622022-04-29 13:33:02 +0200218 portName: http
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000219updateStrategy:
seshukm0df1f8e2020-08-17 21:45:49 +0530220 type: RollingUpdate
221 maxUnavailable: 1
222 maxSurge: 1
223
224#################################################################
225# soHelpers part
226#################################################################
227soHelpers:
228 nameOverride: so-apih-cert-init
229 certInitializer:
230 nameOverride: so-apih-cert-init
231 credsPath: /opt/app/osaaf/local
seshukm0df1f8e2020-08-17 21:45:49 +0530232 containerPort: *containerPort
233
Alexis de Talhouëta52efcc2018-09-18 16:46:12 -0400234# Resource Limit flavor -By Default using small
vaibhav16dec0da88292018-08-13 06:10:27 +0000235flavor: small
236# Segregation for Different environment (Small and Large)
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100237persistence:
238 certificatesPath: /certificates
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000239resources:
vaibhav16dec0da88292018-08-13 06:10:27 +0000240 small:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000241 limits:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000242 cpu: 2000m
vaibhav16dec0da88292018-08-13 06:10:27 +0000243 memory: 4Gi
244 requests:
245 cpu: 500m
246 memory: 1Gi
247 large:
248 limits:
249 cpu: 4000m
250 memory: 8Gi
251 requests:
252 cpu: 1000m
253 memory: 2Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000254 unlimited: {}
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000255
Mike Elliottd32d36e2018-02-12 15:54:03 -0500256nodeSelector: {}
Brian Freeman1a667932018-09-06 14:45:37 -0500257affinity: {}
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000258
sunilb0a97ab22020-02-25 10:18:48 +0530259# application configuration
260config:
261 logstashServiceName: log-ls
262 logstashPort: 5044
Marcin Wilkad9b3762021-10-13 18:20:43 +0200263 # "KEYSTONE" for keystone v2, "KEYSTONE_V3" for keystone v3
264 openStackKeystoneVersion: "KEYSTONE"
sunilb0a97ab22020-02-25 10:18:48 +0530265
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000266#Used only if localCluster is enabled. Instantiates SO's own cassandra cluster
267#helm deploy demo local/onap --namespace onap --verbose --set so.enabled=true \
268# --set so.global.mariadbGalera.localCluster=true \
269# --set so.global.mariadbGalera.nameOverride=so-mariadb-galera \
270# --set so.global.mariadbGalera.serviceName=so-mariadb-galera
271mariadb-galera:
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100272 rootUser:
273 externalSecret: *dbRootPassSecretName
274 nameOverride: &so-mariadb so-mariadb-galera
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000275 replicaCount: 1
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000276 persistence:
277 mountSubPath: so/mariadb-galera/data
278 enabled: true
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100279 serviceAccount:
280 nameOverride: *so-mariadb
Lucjan Bryndza426a82c2019-08-14 09:14:12 +0200281
282ingress:
283 enabled: false
284 service:
Andreas Geissler51900a92022-08-03 13:10:35 +0200285 - baseaddr: 'so-api'
rope2524d3f3682020-09-02 20:49:21 +0100286 name: 'so'
Lucjan Bryndza426a82c2019-08-14 09:14:12 +0200287 port: 8080
288 config:
Sylvain Desbureauxc9f47132021-04-07 17:26:25 +0200289 tls:
290 secret: '{{ include "common.release" . }}-so-ingress-certs'
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000291
292mso:
293 adapters:
294 requestDb:
295 auth: Basic YnBlbDpwYXNzd29yZDEk
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000296 camundaAuth: AE2E9BE6EF9249085AF98689C4EE087736A5500629A72F35068FFB88813A023581DD6E765071F1C04075B36EA4213A
sekharhuawei2e799e92020-11-14 17:06:56 +0530297 msoKey: 07a7159d3bf51a0e53be7a8f89699be7
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000298 sdc:
299 client:
300 auth: 878785F4F31BC9CFA5AB52A172008212D8845ED2DE08AD5E56AF114720A4E49768B8F95CDA2EB971765D28EDCDAA24
301 aai:
302 auth: 6E081E10B1CA43A843E303733A74D9B23B601A6E22A21C7EF2C7F15A42F81A1A4E85E65268C2661F71321052C7F3E55B96A8E1E951F8BF6F
Priyadharshini7dc03852020-08-27 04:36:03 -0700303 oof:
304 login: test
305 password: testpwd
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000306 so:
307 operationalEnv:
308 dmaap:
309 auth: 51EA5414022D7BE536E7516C4D1A6361416921849B72C0D6FC1C7F262FD9F2BBC2AD124190A332D9845A188AD80955567A4F975C84C221EEA8243BFD92FFE6896CDD1EA16ADD34E1E3D47D4A
310 health:
311 auth: basic bXNvX2FkbWlufHBhc3N3b3JkMSQ=
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100312
seshukm0df1f8e2020-08-17 21:45:49 +0530313so-appc-orchestrator:
Sylvain Desbureaux276c8e62020-11-02 17:51:15 +0100314 enabled: false
sekharhuawei2e799e92020-11-14 17:06:56 +0530315 server:
316 actuatorCredsExternalSecret: *actuator-secrets
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100317 db:
318 <<: *dbSecrets
seshukm0df1f8e2020-08-17 21:45:49 +0530319
320so-bpmn-infra:
321 db:
322 <<: *dbSecrets
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000323 logConfigMapNamePrefix: '{{ include "common.release" . }}-so'
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100324
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000325so-catalog-db-adapter:
seshukm0df1f8e2020-08-17 21:45:49 +0530326 enabled: true
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100327 db:
328 <<: *dbSecrets
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100329
sekharhuawei2e799e92020-11-14 17:06:56 +0530330so-cnf-adapter:
331 enabled: true
332 db:
333 <<: *dbSecrets
334 server:
335 aafCredsExternalSecret: *aaf-secrets
336 aaiCredsExternalSecret: *aai-secrets
337 actuatorCredsExternalSecret: *actuator-secrets
338 mso:
339 msoKeySecret: *mso-key
340
AndrewLamb8e090442020-10-15 09:28:09 +0100341so-etsi-nfvo-ns-lcm:
342 enabled: true
rope2524d3f3682020-09-02 20:49:21 +0100343 db:
344 <<: *dbSecrets
AndrewLamb8e090442020-10-15 09:28:09 +0100345
sekharhuawei2e799e92020-11-14 17:06:56 +0530346so-mariadb:
347 db:
348 rootPasswordExternalSecretLocalDb: *dbRootPassSecretName
349 rootPasswordExternalSecret: '{{ ternary .Values.db.rootPasswordExternalSecretLocalDb (include "common.mariadb.secret.rootPassSecretName" (dict "dot" . "chartName" .Values.global.mariadbGalera.nameOverride)) .Values.global.mariadbGalera.localCluster }}'
350 backupCredsExternalSecret: *dbBackupCredsSecretName
351 userCredsExternalSecret: *dbUserCredsSecretName
352 adminCredsExternalSecret: *dbAdminCredsSecretName
353
Sylvain Desbureaux1eff56b2021-02-25 14:13:01 +0100354so-admin-cockpit:
seshukm0df1f8e2020-08-17 21:45:49 +0530355 enabled: true
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100356 db:
357 <<: *dbSecrets
358
sekharhuawei2e799e92020-11-14 17:06:56 +0530359so-nssmf-adapter:
360 enabled: true
361 server:
362 actuatorCredsExternalSecret: *actuator-secrets
363 bpelCredsExternalSecret: *bpel-secrets
364 db:
365 <<: *dbSecrets
366
367so-oof-adapter:
368 enabled: true
369 db:
370 <<: *dbSecrets
371 mso:
372 msoKeySecret: *mso-key
373 camundaAuth: AE2E9BE6EF9249085AF98689C4EE087736A5500629A72F35068FFB88813A023581DD6E765071F1C04075B36EA4213A
374 oof:
375 authSecret: *mso-oof-auth
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000376 logConfigMapNamePrefix: '{{ include "common.release" . }}-so'
sekharhuawei2e799e92020-11-14 17:06:56 +0530377
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000378so-openstack-adapter:
seshukm0df1f8e2020-08-17 21:45:49 +0530379 enabled: true
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100380 db:
381 <<: *dbSecrets
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000382 logConfigMapNamePrefix: '{{ include "common.release" . }}-so'
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100383
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000384so-request-db-adapter:
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100385 db:
386 <<: *dbSecrets
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100387
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000388so-sdc-controller:
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100389 db:
390 <<: *dbSecrets
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000391 logConfigMapNamePrefix: '{{ include "common.release" . }}-so'
efiacor8d3ff802022-11-23 12:13:26 +0000392 config:
393 jaasConfExternalSecret: '{{ include "common.release" . }}-{{ .Values.global.soSdcListenerKafkaUser }}'
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100394
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000395so-sdnc-adapter:
seshukm0df1f8e2020-08-17 21:45:49 +0530396 enabled: true
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100397 db:
398 <<: *dbSecrets
seshukm610d97d2021-03-19 02:57:36 +0530399 mso:
400 msoKeySecret: *mso-key
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000401 logConfigMapNamePrefix: '{{ include "common.release" . }}-so'
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100402
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100403so-ve-vnfm-adapter:
Sylvain Desbureaux28d56562020-11-02 17:54:05 +0100404 enabled: false
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100405
seshukm87ccd872021-03-30 21:45:16 +0530406so-etsi-sol005-adapter:
seshukm0df1f8e2020-08-17 21:45:49 +0530407 enabled: true
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100408 db:
409 <<: *dbSecrets
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100410
Sylvain Desbureaux1eff56b2021-02-25 14:13:01 +0100411so-etsi-sol003-adapter:
seshukm0df1f8e2020-08-17 21:45:49 +0530412 enabled: true
farida azmy87f46222021-04-06 15:25:15 +0200413
414#Pods Service Account
415serviceAccount:
416 nameOverride: so
417 roles:
418 - read
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000419
420#Log configuration
421log:
422 path: /var/log/onap