blob: 18455e4129ad1233f919d7bd50576ff61c006688 [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
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010065readinessCheck:
66 wait_for:
Prabhjot Singh Sethi46e17562021-08-20 22:40:23 +053067 jobs:
68 - '{{ include "common.release" . }}-so-mariadb-config-job'
Sylvain Desbureauxd055a172020-10-30 14:32:03 +010069
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010070#################################################################
71# Secrets metaconfig
72#################################################################
73secrets:
74 - uid: db-root-pass
75 name: &dbRootPassSecretName '{{ include "common.release" . }}-so-db-root-pass'
76 type: password
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010077 externalSecret: '{{ .Values.global.mariadbGalera.localCluster | ternary
78 .Values.global.mariadbGalera.rootPasswordExternalSecret
79 (default (include "common.mariadb.secret.rootPassSecretName"
80 (dict "dot" . "chartName" .Values.global.mariadbGalera.nameOverride))
81 .Values.global.mariadbGalera.rootPasswordExternalSecret) }}'
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010082 password: '{{ .Values.global.mariadbGalera.mariadbRootpassword }}'
83 - uid: db-backup-creds
84 name: &dbBackupCredsSecretName '{{ include "common.release" . }}-so-db-backup-creds'
85 type: basicAuth
86 externalSecret: '{{ ternary .Values.global.migration.dbCredsExternalSecret "migrationDisabled" .Values.global.migration.enabled }}'
87 login: '{{ ternary .Values.global.migration.dbUser "migrationDisabled" .Values.global.migration.enabled }}'
88 password: '{{ ternary .Values.global.migration.dbPassword "migrationDisabled" .Values.global.migration.enabled }}'
89 passwordPolicy: required
90 annotations:
91 helm.sh/hook: pre-upgrade,pre-install
rope2524d3f3682020-09-02 20:49:21 +010092 helm.sh/hook-weight: '0'
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010093 helm.sh/hook-delete-policy: before-hook-creation
94 - uid: db-user-creds
95 name: &dbUserCredsSecretName '{{ include "common.release" . }}-so-db-user-creds'
96 type: basicAuth
97 externalSecret: '{{ .Values.dbCreds.userCredsExternalSecret }}'
98 login: '{{ .Values.dbCreds.userName }}'
99 password: '{{ .Values.dbCreds.userPassword }}'
100 passwordPolicy: generate
101 - uid: db-admin-creds
102 name: &dbAdminCredsSecretName '{{ include "common.release" . }}-so-db-admin-creds'
103 type: basicAuth
104 externalSecret: '{{ .Values.dbCreds.adminCredsExternalSecret }}'
105 login: '{{ .Values.dbCreds.adminName }}'
106 password: '{{ .Values.dbCreds.adminPassword }}'
107 passwordPolicy: generate
sekharhuawei2e799e92020-11-14 17:06:56 +0530108 - uid: 'mso-key'
Priyadharshini7dc03852020-08-27 04:36:03 -0700109 name: &mso-key '{{ include "common.release" . }}-mso-key'
110 type: password
sekharhuawei2e799e92020-11-14 17:06:56 +0530111 password: '{{ .Values.mso.msoKey }}'
Priyadharshini7dc03852020-08-27 04:36:03 -0700112 - uid: mso-oof-auth
113 name: &mso-oof-auth '{{ include "common.release" . }}-mso-oof-auth'
114 type: basicAuth
115 login: '{{ .Values.mso.oof.login }}'
116 password: '{{ .Values.mso.oof.password }}'
117 passwordPolicy: required
sekharhuawei2e799e92020-11-14 17:06:56 +0530118 - uid: server-actuator-creds
119 name: &actuator-secrets '{{ include "common.release" . }}-so-server-actuator-creds'
120 type: basicAuth
121 externalSecret: '{{ tpl (default "" .Values.server.actuatorCredsExternalSecret) . }}'
122 login: '{{ .Values.server.actuator.username }}'
123 password: '{{ .Values.server.actuator.password }}'
124 passwordPolicy: required
125 - uid: server-bpel-creds
126 name: &bpel-secrets '{{ include "common.release" . }}-so-server-bpel-creds'
127 type: basicAuth
128 externalSecret: '{{ tpl (default "" .Values.server.bpelCredsExternalSecret) . }}'
129 login: '{{ .Values.server.bpel.username }}'
130 password: '{{ .Values.server.bpel.password }}'
131 passwordPolicy: required
132 - uid: so-aaf-creds
133 name: &aaf-secrets '{{ include "common.release" . }}-so-server-aaf-creds'
134 type: basicAuth
135 externalSecret: '{{ tpl (default "" .Values.server.aafCredsExternalSecret) . }}'
136 login: '{{ .Values.server.aaf.username }}'
137 password: '{{ .Values.server.aaf.password }}'
138 passwordPolicy: required
139 - uid: so-aai-creds
140 name: &aai-secrets '{{ include "common.release" . }}-so-server-aai-creds'
141 type: basicAuth
142 externalSecret: '{{ tpl (default "" .Values.server.aaiCredsExternalSecret) . }}'
143 login: '{{ .Values.server.aai.username }}'
144 password: '{{ .Values.server.aai.password }}'
145 passwordPolicy: required
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100146
seshukm0df1f8e2020-08-17 21:45:49 +0530147aafConfig:
148 permission_user: 1000
149 permission_group: 999
150
151aaf:
152 trustore: org.onap.so.trust.jks
153
jmacc4f04d32018-10-12 18:24:24 +0000154#################################################################
Sylvain Desbureauxc9f47132021-04-07 17:26:25 +0200155# AAF part for Ingress
156#################################################################
157certInitializer:
158 nameOverride: so-tls-cert
159 aafDeployFqi: deployer@people.osaaf.org
160 aafDeployPass: demo123456!
161 # aafDeployCredsExternalSecret: some secret
162 fqdn: so
163 fqi: so@so.onap.org
164 public_fqdn: so.onap.org
165 fqi_namespace: org.onap.so
166 cadi_longitude: '0.0'
167 cadi_latitude: '0.0'
168 app_ns: org.osaaf.aaf
169 credsPath: /opt/app/osaaf/local
170 ingressTlsSecret: '{{ include "common.release" . }}-so-ingress-certs'
171
172#################################################################
jmacc4f04d32018-10-12 18:24:24 +0000173# Application configuration defaults.
174#################################################################
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100175
176dbSecrets: &dbSecrets
177 userCredsExternalSecret: *dbUserCredsSecretName
178 adminCredsExternalSecret: *dbAdminCredsSecretName
179
180# unused in this, just to pass to subcharts
181dbCreds:
182 userName: so_user
183 adminName: so_admin
184
Lukasz Rajewski0a3982a2021-10-11 21:35:16 +0200185image: onap/so/api-handler-infra:1.9.2
sekharhuawei2e799e92020-11-14 17:06:56 +0530186
187server:
188 aaf:
189 username: so@so.onap.org
190 password: demo123456
191 # aafCredsExternalSecret: some secret
192 aai:
193 username: aai@aai.onap.org
194 password: demo123456!
195 # aaiCredsExternalSecret: some secret
196 actuator:
197 username: mso_admin
198 password: password1$
199 # actuatorCredsExternalSecret: some secret
200 bpel:
201 username: bpel
202 password: password1$
203 # bpelCredsExternalSecret: some secret
204
jmacc4f04d32018-10-12 18:24:24 +0000205pullPolicy: Always
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000206replicaCount: 1
207minReadySeconds: 10
seshukm0df1f8e2020-08-17 21:45:49 +0530208containerPort: &containerPort 8080
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000209logPath: ./logs/apih/
210app: api-handler-infra
211service:
seshukm0df1f8e2020-08-17 21:45:49 +0530212 type: NodePort
213 nodePort: 77
214 internalPort: *containerPort
215 externalPort: *containerPort
216 portName: so-apih-port
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000217updateStrategy:
seshukm0df1f8e2020-08-17 21:45:49 +0530218 type: RollingUpdate
219 maxUnavailable: 1
220 maxSurge: 1
221
222#################################################################
223# soHelpers part
224#################################################################
225soHelpers:
226 nameOverride: so-apih-cert-init
227 certInitializer:
228 nameOverride: so-apih-cert-init
229 credsPath: /opt/app/osaaf/local
seshukm0df1f8e2020-08-17 21:45:49 +0530230 containerPort: *containerPort
231
Alexis de Talhouëta52efcc2018-09-18 16:46:12 -0400232# Resource Limit flavor -By Default using small
vaibhav16dec0da88292018-08-13 06:10:27 +0000233flavor: small
234# Segregation for Different environment (Small and Large)
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100235persistence:
236 certificatesPath: /certificates
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000237resources:
vaibhav16dec0da88292018-08-13 06:10:27 +0000238 small:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000239 limits:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000240 cpu: 2000m
vaibhav16dec0da88292018-08-13 06:10:27 +0000241 memory: 4Gi
242 requests:
243 cpu: 500m
244 memory: 1Gi
245 large:
246 limits:
247 cpu: 4000m
248 memory: 8Gi
249 requests:
250 cpu: 1000m
251 memory: 2Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000252 unlimited: {}
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000253
Mike Elliottd32d36e2018-02-12 15:54:03 -0500254nodeSelector: {}
Brian Freeman1a667932018-09-06 14:45:37 -0500255affinity: {}
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000256
sunilb0a97ab22020-02-25 10:18:48 +0530257# application configuration
258config:
259 logstashServiceName: log-ls
260 logstashPort: 5044
Marcin Wilkad9b3762021-10-13 18:20:43 +0200261 # "KEYSTONE" for keystone v2, "KEYSTONE_V3" for keystone v3
262 openStackKeystoneVersion: "KEYSTONE"
sunilb0a97ab22020-02-25 10:18:48 +0530263
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000264#Used only if localCluster is enabled. Instantiates SO's own cassandra cluster
265#helm deploy demo local/onap --namespace onap --verbose --set so.enabled=true \
266# --set so.global.mariadbGalera.localCluster=true \
267# --set so.global.mariadbGalera.nameOverride=so-mariadb-galera \
268# --set so.global.mariadbGalera.serviceName=so-mariadb-galera
269mariadb-galera:
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100270 rootUser:
271 externalSecret: *dbRootPassSecretName
272 nameOverride: &so-mariadb so-mariadb-galera
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000273 replicaCount: 1
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000274 persistence:
275 mountSubPath: so/mariadb-galera/data
276 enabled: true
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +0100277 serviceAccount:
278 nameOverride: *so-mariadb
Lucjan Bryndza426a82c2019-08-14 09:14:12 +0200279
280ingress:
281 enabled: false
282 service:
rope2524d3f3682020-09-02 20:49:21 +0100283 - baseaddr: 'so.api'
284 name: 'so'
Lucjan Bryndza426a82c2019-08-14 09:14:12 +0200285 port: 8080
286 config:
Sylvain Desbureauxc9f47132021-04-07 17:26:25 +0200287 tls:
288 secret: '{{ include "common.release" . }}-so-ingress-certs'
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000289
290mso:
291 adapters:
292 requestDb:
293 auth: Basic YnBlbDpwYXNzd29yZDEk
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000294 camundaAuth: AE2E9BE6EF9249085AF98689C4EE087736A5500629A72F35068FFB88813A023581DD6E765071F1C04075B36EA4213A
sekharhuawei2e799e92020-11-14 17:06:56 +0530295 msoKey: 07a7159d3bf51a0e53be7a8f89699be7
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000296 sdc:
297 client:
298 auth: 878785F4F31BC9CFA5AB52A172008212D8845ED2DE08AD5E56AF114720A4E49768B8F95CDA2EB971765D28EDCDAA24
299 aai:
300 auth: 6E081E10B1CA43A843E303733A74D9B23B601A6E22A21C7EF2C7F15A42F81A1A4E85E65268C2661F71321052C7F3E55B96A8E1E951F8BF6F
Priyadharshini7dc03852020-08-27 04:36:03 -0700301 oof:
302 login: test
303 password: testpwd
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000304 so:
305 operationalEnv:
306 dmaap:
307 auth: 51EA5414022D7BE536E7516C4D1A6361416921849B72C0D6FC1C7F262FD9F2BBC2AD124190A332D9845A188AD80955567A4F975C84C221EEA8243BFD92FFE6896CDD1EA16ADD34E1E3D47D4A
308 health:
309 auth: basic bXNvX2FkbWlufHBhc3N3b3JkMSQ=
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100310
seshukm0df1f8e2020-08-17 21:45:49 +0530311so-appc-orchestrator:
Sylvain Desbureaux276c8e62020-11-02 17:51:15 +0100312 enabled: false
sekharhuawei2e799e92020-11-14 17:06:56 +0530313 server:
314 actuatorCredsExternalSecret: *actuator-secrets
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100315 db:
316 <<: *dbSecrets
seshukm0df1f8e2020-08-17 21:45:49 +0530317
318so-bpmn-infra:
319 db:
320 <<: *dbSecrets
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000321 logConfigMapNamePrefix: '{{ include "common.release" . }}-so'
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100322
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000323so-catalog-db-adapter:
seshukm0df1f8e2020-08-17 21:45:49 +0530324 enabled: true
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100325 db:
326 <<: *dbSecrets
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100327
sekharhuawei2e799e92020-11-14 17:06:56 +0530328so-cnf-adapter:
329 enabled: true
330 db:
331 <<: *dbSecrets
332 server:
333 aafCredsExternalSecret: *aaf-secrets
334 aaiCredsExternalSecret: *aai-secrets
335 actuatorCredsExternalSecret: *actuator-secrets
336 mso:
337 msoKeySecret: *mso-key
338
AndrewLamb8e090442020-10-15 09:28:09 +0100339so-etsi-nfvo-ns-lcm:
340 enabled: true
rope2524d3f3682020-09-02 20:49:21 +0100341 db:
342 <<: *dbSecrets
AndrewLamb8e090442020-10-15 09:28:09 +0100343
sekharhuawei2e799e92020-11-14 17:06:56 +0530344so-mariadb:
345 db:
346 rootPasswordExternalSecretLocalDb: *dbRootPassSecretName
347 rootPasswordExternalSecret: '{{ ternary .Values.db.rootPasswordExternalSecretLocalDb (include "common.mariadb.secret.rootPassSecretName" (dict "dot" . "chartName" .Values.global.mariadbGalera.nameOverride)) .Values.global.mariadbGalera.localCluster }}'
348 backupCredsExternalSecret: *dbBackupCredsSecretName
349 userCredsExternalSecret: *dbUserCredsSecretName
350 adminCredsExternalSecret: *dbAdminCredsSecretName
351
Sylvain Desbureaux1eff56b2021-02-25 14:13:01 +0100352so-admin-cockpit:
seshukm0df1f8e2020-08-17 21:45:49 +0530353 enabled: true
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100354 db:
355 <<: *dbSecrets
356
sekharhuawei2e799e92020-11-14 17:06:56 +0530357so-nssmf-adapter:
358 enabled: true
359 server:
360 actuatorCredsExternalSecret: *actuator-secrets
361 bpelCredsExternalSecret: *bpel-secrets
362 db:
363 <<: *dbSecrets
364
365so-oof-adapter:
366 enabled: true
367 db:
368 <<: *dbSecrets
369 mso:
370 msoKeySecret: *mso-key
371 camundaAuth: AE2E9BE6EF9249085AF98689C4EE087736A5500629A72F35068FFB88813A023581DD6E765071F1C04075B36EA4213A
372 oof:
373 authSecret: *mso-oof-auth
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000374 logConfigMapNamePrefix: '{{ include "common.release" . }}-so'
sekharhuawei2e799e92020-11-14 17:06:56 +0530375
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000376so-openstack-adapter:
seshukm0df1f8e2020-08-17 21:45:49 +0530377 enabled: true
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100378 db:
379 <<: *dbSecrets
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000380 logConfigMapNamePrefix: '{{ include "common.release" . }}-so'
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100381
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000382so-request-db-adapter:
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100383 db:
384 <<: *dbSecrets
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100385
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000386so-sdc-controller:
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100387 db:
388 <<: *dbSecrets
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000389 logConfigMapNamePrefix: '{{ include "common.release" . }}-so'
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100390
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000391so-sdnc-adapter:
seshukm0df1f8e2020-08-17 21:45:49 +0530392 enabled: true
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100393 db:
394 <<: *dbSecrets
seshukm610d97d2021-03-19 02:57:36 +0530395 mso:
396 msoKeySecret: *mso-key
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000397 logConfigMapNamePrefix: '{{ include "common.release" . }}-so'
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100398
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100399so-ve-vnfm-adapter:
Sylvain Desbureaux28d56562020-11-02 17:54:05 +0100400 enabled: false
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100401
seshukm87ccd872021-03-30 21:45:16 +0530402so-etsi-sol005-adapter:
seshukm0df1f8e2020-08-17 21:45:49 +0530403 enabled: true
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +0100404 db:
405 <<: *dbSecrets
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100406
Sylvain Desbureaux1eff56b2021-02-25 14:13:01 +0100407so-etsi-sol003-adapter:
seshukm0df1f8e2020-08-17 21:45:49 +0530408 enabled: true
farida azmy87f46222021-04-06 15:25:15 +0200409
410#Pods Service Account
411serviceAccount:
412 nameOverride: so
413 roles:
414 - read
Maciej Wereskidf9ba222021-11-05 14:38:18 +0000415
416#Log configuration
417log:
418 path: /var/log/onap