blob: 5a06253863a29f2ef0596ac2b7184c72380e343a [file] [log] [blame]
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00001# Copyright © 2018 AT&T USA
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00002#
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.
jmacc4f04d32018-10-12 18:24:24 +000014#################################################################
15# Global configuration defaults.
16#################################################################
17global:
18 nodePortPrefix: 302
19 nodePortPrefixExt: 304
20 repository: nexus3.onap.org:10001
21 readinessRepository: oomk8s
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000022 readinessImage: readiness-check:2.0.2
23 mariadbGalera:
24 nameOverride: mariadb-galera
25 serviceName: mariadb-galera
26 servicePort: "3306"
27 mariadbRootPassword: secretpassword
sarada prasad sahooae2c7342019-07-10 14:40:12 +053028 #This flag allows SO to instantiate its own mariadb-galera cluster,
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000029 #serviceName and nameOverride should be so-mariadb-galera if this flag is enabled
30 localCluster: false
jmacc4f04d32018-10-12 18:24:24 +000031 persistence:
32 mountPath: /dockerdata-nfs
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000033 #This configuration will run the migration. The configurations are for backing up the data
34 #from DB and then restoring it to the present versions preferred DB.
35 migration:
36 enabled: false
37 dbHost: mariadb-galera
38 dbPort: 3306
39 dbUser: root
40 dbPassword: secretpassword
rope252c5e14bb2020-01-02 11:03:59 +000041 msbEnabled: true
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +000042 security:
43 aaf:
44 enabled: false
45 aaf:
46 auth:
47 header: Basic c29Ac28ub25hcC5vcmc6ZGVtbzEyMzQ1Ngo=
48 encrypted: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
49 app:
50 siteName: onapheat
51 auth: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
52 defaultCloudOwner: onap
53 cadi:
54 cadiLoglevel: DEBUG
55 cadiKeyFile: /app/org.onap.so.keyfile
56 cadiTrustStore: /app/org.onap.so.trust.jks
57 cadiTruststorePassword: enc:MFpuxKeYK6Eo6QXjDUjtOBbp0FthY7SB4mKSIJm_RWC
58 cadiLatitude: 38.4329
59 cadiLongitude: -90.43248
60 aafEnv: IST
61 aafApiVersion: 2.1
62 aafRootNs: org.onap.so
63 aafLocateUrl: https://aaf-locate.onap:8095
64 aafUrl: https://aaf-locate.onap:8095/locate/org.osaaf.aaf.service:2.1
65 msoKey: 07a7159d3bf51a0e53be7a8f89699be7
66 client:
67 certs:
68 trustStorePassword: b25hcDRzbw==
69 keyStorePassword: c280b25hcA==
jmacc4f04d32018-10-12 18:24:24 +000070#################################################################
71# Application configuration defaults.
72#################################################################
Mike Elliottd32d36e2018-02-12 15:54:03 -050073repository: nexus3.onap.org:10001
seshukmfb56d712019-10-14 10:46:52 +053074image: onap/so/api-handler-infra:1.5.3
jmacc4f04d32018-10-12 18:24:24 +000075pullPolicy: Always
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000076replicaCount: 1
77minReadySeconds: 10
78containerPort: 8080
79logPath: ./logs/apih/
80app: api-handler-infra
81service:
82 type: NodePort
Mandeep Khindadc2b43e2018-09-06 16:34:19 +000083 nodePort: 77
Brian Freeman1a667932018-09-06 14:45:37 -050084 internalPort: 8080
Mandeep Khindafe527eb2018-10-16 09:56:34 -040085 externalPort: 8080
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000086 portName: so-apih-port
87updateStrategy:
88 type: RollingUpdate
89 maxUnavailable: 1
90 maxSurge: 1
Alexis de Talhouëta52efcc2018-09-18 16:46:12 -040091# Resource Limit flavor -By Default using small
vaibhav16dec0da88292018-08-13 06:10:27 +000092flavor: small
93# Segregation for Different environment (Small and Large)
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000094resources:
vaibhav16dec0da88292018-08-13 06:10:27 +000095 small:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000096 limits:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000097 cpu: 2000m
vaibhav16dec0da88292018-08-13 06:10:27 +000098 memory: 4Gi
99 requests:
100 cpu: 500m
101 memory: 1Gi
102 large:
103 limits:
104 cpu: 4000m
105 memory: 8Gi
106 requests:
107 cpu: 1000m
108 memory: 2Gi
Mandeep Khinda60d36d42018-09-24 15:15:48 +0000109 unlimited: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000110livenessProbe:
Ramesh Parthasarathy1ceefda2018-09-14 21:22:43 +0000111 path: /manage/health
112 scheme: HTTP
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000113 initialDelaySeconds: 600
114 periodSeconds: 60
115 timeoutSeconds: 10
116 successThreshold: 1
117 failureThreshold: 3
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000118
Mike Elliottd32d36e2018-02-12 15:54:03 -0500119nodeSelector: {}
Brian Freeman1a667932018-09-06 14:45:37 -0500120affinity: {}
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +0000121
122#Used only if localCluster is enabled. Instantiates SO's own cassandra cluster
123#helm deploy demo local/onap --namespace onap --verbose --set so.enabled=true \
124# --set so.global.mariadbGalera.localCluster=true \
125# --set so.global.mariadbGalera.nameOverride=so-mariadb-galera \
126# --set so.global.mariadbGalera.serviceName=so-mariadb-galera
127mariadb-galera:
128 nameOverride: so-mariadb-galera
129 replicaCount: 1
130 service:
131 name: so-mariadb-galera
132 persistence:
133 mountSubPath: so/mariadb-galera/data
134 enabled: true
Lucjan Bryndza426a82c2019-08-14 09:14:12 +0200135
136ingress:
137 enabled: false
138 service:
139 - baseaddr: "so"
140 name: "so"
141 port: 8080
142 config:
rope252c5e14bb2020-01-02 11:03:59 +0000143 ssl: "none"
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000144
145mso:
146 adapters:
147 requestDb:
148 auth: Basic YnBlbDpwYXNzd29yZDEk
149 config:
150 cadi:
151 aafId: so@so.onap.org
152 aafPassword: enc:EME-arXn2lx8PO0f2kEtyK7VVGtAGWavXorFoxRmPO9
153 apiEnforcement: org.onap.so.apihPerm
154 noAuthn: /manage/health
155 camundaAuth: AE2E9BE6EF9249085AF98689C4EE087736A5500629A72F35068FFB88813A023581DD6E765071F1C04075B36EA4213A
156 sdc:
157 client:
158 auth: 878785F4F31BC9CFA5AB52A172008212D8845ED2DE08AD5E56AF114720A4E49768B8F95CDA2EB971765D28EDCDAA24
159 aai:
160 auth: 6E081E10B1CA43A843E303733A74D9B23B601A6E22A21C7EF2C7F15A42F81A1A4E85E65268C2661F71321052C7F3E55B96A8E1E951F8BF6F
161 so:
162 operationalEnv:
163 dmaap:
164 auth: 51EA5414022D7BE536E7516C4D1A6361416921849B72C0D6FC1C7F262FD9F2BBC2AD124190A332D9845A188AD80955567A4F975C84C221EEA8243BFD92FFE6896CDD1EA16ADD34E1E3D47D4A
165 health:
166 auth: basic bXNvX2FkbWlufHBhc3N3b3JkMSQ=
167so-bpmn-infra:
168 cds:
169 auth: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
170 aai:
171 auth: 221187EFA3AD4E33600DE0488F287099934CE65C3D0697BCECC00BB58E784E07CD74A24581DC31DBC086FF63DF116378776E9BE3D1325885
172 mso:
173 key: 07a7159d3bf51a0e53be7a8f89699be7
174 adapters:
175 requestDb:
176 auth: Basic YnBlbDpwYXNzd29yZDEk
177 db:
178 auth: A3745B5DBE165EFCF101D85A6FC81C211AB8BF604F8861B6C413D5DC90F8F30E0139DE44B8A342F4EF70AF
179 password: wLg4sjrAFUS8rfVfdvTXeQ==
180 po:
181 auth: A3745B5DBE165EFCF101D85A6FC81C211AB8BF604F8861B6C413D5DC90F8F30E0139DE44B8A342F4EF70AF
182 config:
183 cadi:
184 aafId: so@so.onap.org
185 aaafPassword: enc:EME-arXn2lx8PO0f2kEtyK7VVGtAGWavXorFoxRmPO9
186 apiEnforcement: org.onap.so.bpmnPerm
187 noAuthn: /manage/health
188 sdnc:
189 password: 1D78CFC35382B6938A989066A7A7EAEF4FE933D2919BABA99EB4763737F39876C333EE5F
190 sniro:
191 auth: test:testpwd
192 endpoint: http://replaceme:28090/optimizationInstance/V1/create
193 oof:
194 auth: test:testpwd
195 so:
196 vnfm:
197 adapter:
198 auth: Basic dm5mbTpwYXNzd29yZDEk
199so-catalog-db-adapter:
200 mso:
201 config:
202 cadi:
203 aafId: so@so.onap.org
204 aafPassword: enc:EME-arXn2lx8PO0f2kEtyK7VVGtAGWavXorFoxRmPO9
205 apiEnforcement: org.onap.so.catalogDbAdapterPerm
206 noAuthn: /manage/health
207 adapters:
208 db:
209 auth: Basic YnBlbDpwYXNzd29yZDEk
210so-openstack-adapter:
211 aaf:
212 auth:
213 encrypted: 7F182B0C05D58A23A1C4966B9CDC9E0B8BC5CD53BC8C7B4083D869F8D53E9BDC3EFD55C94B1D3F
214 aai:
215 auth: 2A11B07DB6214A839394AA1EC5844695F5114FC407FF5422625FB00175A3DCB8A1FF745F22867EFA72D5369D599BBD88DA8BED4233CF5586
216 org:
217 onap:
218 so:
219 adapters:
220 bpelauth: D1A67FA93B6A6419132D0F83CC771AF774FD3C60853C50C22C8C6FC5088CC79E9E81EDE9EA39F22B2F66A0068E
221 valet:
222 basic_auth: bXNvOkphY2tkYXdzIGxvdmUgbXkgYmlnIHNwaGlueCBvZiBxdWFydHouCg==
223 mso:
224 msoKey: 07a7159d3bf51a0e53be7a8f89699be7
225 auth: BEA8637716A7EB617DF472BA6552D22F68C1CB17B0D094D77DDA562F4ADAAC4457CAB848E1A4
226 config:
227 cadi:
228 aafId: so@so.onap.org
229 aafPassword: enc:EME-arXn2lx8PO0f2kEtyK7VVGtAGWavXorFoxRmPO9
230 apiEnforcement: org.onap.so.openStackAdapterPerm
231 noAuthn: /manage/health
232 db:
233 auth: Basic YnBlbDpwYXNzd29yZDEk
234so-request-db-adapter:
235 mso:
236 config:
237 cadi:
238 aafId: so@so.onap.org
239 aafPassword: enc:EME-arXn2lx8PO0f2kEtyK7VVGtAGWavXorFoxRmPO9
240 apiEnforcement: org.onap.so.requestDbAdapterPerm
241 noAuthn: /manage/health
242 adapters:
243 requestDb:
244 auth: Basic YnBlbDpwYXNzd29yZDEk
245so-sdc-controller:
246 aai:
247 auth: 2A11B07DB6214A839394AA1EC5844695F5114FC407FF5422625FB00175A3DCB8A1FF745F22867EFA72D5369D599BBD88DA8BED4233CF5586
248 mso:
249 msoKey: 07a7159d3bf51a0e53be7a8f89699be7
250 config:
251 cadi:
252 aafId: so@so.onap.org
253 aafPassword: enc:EME-arXn2lx8PO0f2kEtyK7VVGtAGWavXorFoxRmPO9
254 apiEnforcement: org.onap.so.sdcControllerPerm
255 noAuthn: /manage/health
256 asdc:
257 config:
258 key: 566B754875657232314F5548556D3665
259 requestDb:
260 auth: Basic YnBlbDpwYXNzd29yZDEk
261 asdc-connections:
262 asdc-controller1:
263 password: 76966BDD3C7414A03F7037264FF2E6C8EEC6C28F2B67F2840A1ED857C0260FEE731D73F47F828E5527125D29FD25D3E0DE39EE44C058906BF1657DE77BF897EECA93BDC07FA64F
264so-sdnc-adapter:
265 org:
266 onap:
267 so:
268 adapters:
269 sdnc:
270 bpelauth: 4C18603C5AE7E3A42A6CED95CDF9C0BA9B2109B3725747662E5D34E5FDF63DA9ADEBB08185098F14699195FDE9475100
271 sdncauth: ED07A7EE5F099FA53369C3DF2240AD68A00154676EEDBC6F8C16BAA83B1912941B8941ABD48683D2C1072DA7040659692DE936A59BBF42A038CF71DE67B4A375190071EC76EA657801B033C135
272 network:
273 encryptionKey: 07a7159d3bf51a0e53be7a8f89699be7
274 mso:
275 config:
276 cadi:
277 aafId: so@so.onap.org
278 aafPassword: enc:EME-arXn2lx8PO0f2kEtyK7VVGtAGWavXorFoxRmPO9
279 apiEnforcement: org.onap.so.sdncAdapterPerm
280 noAuthn: /manage/health
281 adapters:
282 requestDb:
283 auth: Basic YnBlbDpwYXNzd29yZDEk
284 rest:
285 aafEncrypted: 3EDC974C5CD7FE54C47C7490AF4D3B474CDD7D0FFA35A7ACDE3E209631E45F428976EAC0858874F17390A13149E63C90281DD8D20456
286so-vfc-adapter:
287 mso:
288 config:
289 cadi:
290 aafId: so@so.onap.org
291 aafPassword: enc:EME-arXn2lx8PO0f2kEtyK7VVGtAGWavXorFoxRmPO9
292 apiEnforcement: org.onap.so.vfcAdapterPerm
293 noAuthn: /manage/health
294 adapters:
295 requestDb:
296 auth: Basic YnBlbDpwYXNzd29yZDEk
297so-vnfm-adapter:
298 aaf:
299 auth:
300 username: so@so.onap.org
301 password: 8DB1C939BFC6A35C3832D0E52E452D0E05AE2537AF142CECD125FF827C05A972FDD0F4700547DA
302 aai:
303 auth: 2A11B07DB6214A839394AA1EC5844695F5114FC407FF5422625FB00175A3DCB8A1FF745F22867EFA72D5369D599BBD88DA8BED4233CF5586
304 sdc:
305 username: mso
306 password: 76966BDD3C7414A03F7037264FF2E6C8EEC6C28F2B67F2840A1ED857C0260FEE731D73F47F828E5527125D29FD25D3E0DE39EE44C058906BF1657DE77BF897EECA93BDC07FA64F
307 key: 566B754875657232314F5548556D3665
308 mso:
309 key: 07a7159d3bf51a0e53be7a8f89699be7
310 config:
311 cadi:
312 aafId: so@so.onap.org
313 aafPassword: enc:EME-arXn2lx8PO0f2kEtyK7VVGtAGWavXorFoxRmPO9
314 apiEnforcement: org.onap.so.vnfmAdapterPerm
315 noAuthn: /manage/health