blob: cc7a3cf295db3745100da9e45098bd141f0ff21e [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001identificationHeaderFields:
2 - HTTP_IV_USER
3 - HTTP_CSP_FIRSTNAME
4 - HTTP_CSP_LASTNAME
5 - HTTP_IV_REMOTE_ADDRESS
6 - HTTP_CSP_WSTYPE
7
Michael Lando451a3402017-02-19 10:28:42 +02008# catalog backend hostname
Michael Lando5b593492018-07-29 16:13:45 +03009beFqdn: 192.168.33.10
Tal Gitelman51d50f02017-12-10 18:55:03 +020010# sdccatalog.att.com
Michael Lando451a3402017-02-19 10:28:42 +020011
12# catalog backend http port
13beHttpPort: 8080
14
15# catalog backend http context
16beContext: /sdc/rest/config/get
17
18# catalog backend protocol
19beProtocol: http
20
21# catalog backend ssl port
22beSslPort: 8443
23
24version: 1.0
25released: 2012-11-30
Michael Lando5b593492018-07-29 16:13:45 +030026toscaConformanceLevel: 8.0
Michael Landob8cd1712017-06-11 23:07:10 +030027minToscaConformanceLevel: 3.0
Michael Lando451a3402017-02-19 10:28:42 +020028
Tal Gitelman51d50f02017-12-10 18:55:03 +020029# These values are necessary for running upgrade migration 1710.0 process
Michael Lando5b593492018-07-29 16:13:45 +030030enableAutoHealing: false
Tal Gitelman51d50f02017-12-10 18:55:03 +020031appVersion: 1.1.0
Tal Gitelman51d50f02017-12-10 18:55:03 +020032resourcesForUpgrade:
Michael Lando5b593492018-07-29 16:13:45 +030033 8.0:
34 - org.openecomp.resource.cp.extCP
35 - tosca.nodes.network.Network
36 - tosca.nodes.network.Port
37 - org.openecomp.resource.cp.nodes.network.SubInterface
Tal Gitelman51d50f02017-12-10 18:55:03 +020038skipUpgradeFailedVfs: true
39skipUpgradeVSPs: true
40autoHealingOwner: jh0003
Michael Lando5b593492018-07-29 16:13:45 +030041supportAllottedResourcesAndProxy: false
42deleteLockTimeoutInSeconds: 60
43maxDeleteComponents: 10
Tal Gitelman51d50f02017-12-10 18:55:03 +020044
shrikantawachar2623c842019-05-20 12:11:54 +053045janusGraphCfgFile: src\main\resources\config\janusgraph.properties
46janusGraphMigrationKeySpaceCfgFile: src\main\resources\config\janusgraph-migration.properties
47janusGraphInMemoryGraph: false
48janusGraphLockTimeout: 1800
Tal Gitelman51d50f02017-12-10 18:55:03 +020049
shrikantawachar2623c842019-05-20 12:11:54 +053050# The interval to try and reconnect to JanusGraph DB when it is down during ASDC startup:
51janusGraphReconnectIntervalInSeconds: 3
Tal Gitelman51d50f02017-12-10 18:55:03 +020052
shrikantawachar2623c842019-05-20 12:11:54 +053053# The read timeout towards JanusGraph DB when health check is invoked:
54janusGraphHealthCheckReadTimeout: 1
Tal Gitelman51d50f02017-12-10 18:55:03 +020055
56# The interval to try and reconnect to Elasticsearch when it is down during ASDC startup:
Michael Lando451a3402017-02-19 10:28:42 +020057esReconnectIntervalInSeconds: 3
58uebHealthCheckReconnectIntervalInSeconds: 15
59uebHealthCheckReadTimeout: 4
60
61# Protocols
62protocols:
63 - http
64 - https
Tal Gitelman51d50f02017-12-10 18:55:03 +020065
Michael Landoed64b5e2017-06-09 03:19:04 +030066# Default imports
67defaultImports:
68 - nodes:
69 file: nodes.yml
70 - datatypes:
71 file: data.yml
72 - capabilities:
73 file: capabilities.yml
74 - relationships:
75 file: relationships.yml
76 - groups:
77 file: groups.yml
78 - policies:
79 file: policies.yml
Michael Lando451a3402017-02-19 10:28:42 +020080
81# Users
82users:
83 tom: passwd
84 bob: passwd
Tal Gitelman51d50f02017-12-10 18:55:03 +020085
Michael Lando451a3402017-02-19 10:28:42 +020086neo4j:
87 host: neo4jhost
88 port: 7474
89 user: neo4j
90 password: "12345"
Tal Gitelman51d50f02017-12-10 18:55:03 +020091
92cassandraConfig:
Michael Lando5b593492018-07-29 16:13:45 +030093 cassandraHosts: [192.168.33.10]
Tal Gitelmanc4d387d2019-03-28 11:00:54 +020094 cassandraPort: 9042
Michael Lando5b593492018-07-29 16:13:45 +030095 localDataCenter: DC-AIO-Ubuntu1
Tal Gitelman51d50f02017-12-10 18:55:03 +020096 reconnectTimeout : 30000
Michael Lando5b593492018-07-29 16:13:45 +030097 authenticate: true
98 username: asdc_user
99 password: Aa1234%^!
100 ssl: true
101 truststorePath : C:/Users/im453s/git/vagrant-sdc-all-in-one/tmp.trust
102 truststorePassword : Aa123456
Tal Gitelman51d50f02017-12-10 18:55:03 +0200103 keySpaces:
Michael Lando5b593492018-07-29 16:13:45 +0300104 - { name: dox, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-AIO-Ubuntu1', '1']}
105 - { name: sdcaudit, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-AIO-Ubuntu1', '1']}
106 - { name: sdcartifact, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-AIO-Ubuntu1', '1']}
107 - { name: sdccomponent, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-AIO-Ubuntu1', '1']}
108 - { name: sdcrepository, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-AIO-Ubuntu1', '1']}
109
Michael Lando451a3402017-02-19 10:28:42 +0200110
111#Application-specific settings of ES
112elasticSearch:
113 # Mapping of index prefix to time-based frame. For example, if below is configured:
114 #
115 # - indexPrefix: auditingevents
116 # creationPeriod: minute
117 #
118 # then ES object of type which is mapped to "auditingevents-*" template, and created on 2015-12-23 13:24:54, will enter "auditingevents-2015-12-23-13-24" index.
119 # Another object created on 2015-12-23 13:25:54, will enter "auditingevents-2015-12-23-13-25" index.
120 # If creationPeriod: month, both of the above will enter "auditingevents-2015-12" index.
121 #
122 # PLEASE NOTE: the timestamps are created in UTC/GMT timezone! This is needed so that timestamps will be correctly presented in Kibana.
123 #
124 # Legal values for creationPeriod - year, month, day, hour, minute, none (meaning no time-based behaviour).
125 #
126 # If no creationPeriod is configured for indexPrefix, default behavour is creationPeriod: month.
Tal Gitelman51d50f02017-12-10 18:55:03 +0200127
Michael Lando451a3402017-02-19 10:28:42 +0200128 indicesTimeFrequency:
129 - indexPrefix: auditingevents
130 creationPeriod: month
131 - indexPrefix: monitoring_events
132 creationPeriod: month
133
134artifactTypes:
135 - CHEF
136 - PUPPET
137 - SHELL
138 - YANG
139 - YANG_XML
140 - HEAT
141 - BPEL
142 - DG_XML
143 - MURANO_PKG
144 - WORKFLOW
145 - NETWORK_CALL_FLOW
146 - TOSCA_TEMPLATE
147 - TOSCA_CSAR
148 - AAI_SERVICE_MODEL
149 - AAI_VF_MODEL
150 - AAI_VF_MODULE_MODEL
151 - AAI_VF_INSTANCE_MODEL
152 - OTHER
Michael Landoed64b5e2017-06-09 03:19:04 +0300153 - SNMP_POLL
154 - SNMP_TRAP
155 - GUIDE
agileone821ddb42019-04-15 13:06:45 -0700156 - CONTROLLER_BLUEPRINT_ARCHIVE
aribeiro608be262019-10-03 15:44:48 +0100157 - PNF_SW_INFORMATION
Michael Lando451a3402017-02-19 10:28:42 +0200158
159licenseTypes:
160 - User
161 - Installation
162 - CPU
163
164#Deployment artifacts placeHolder
165resourceTypes: &allResourceTypes
166 - VFC
167 - CP
168 - VL
169 - VF
Michael Landoed64b5e2017-06-09 03:19:04 +0300170 - VFCMT
Tal Gitelman51d50f02017-12-10 18:55:03 +0200171 - Abstract
172 - CVFC
173
Michael Lando451a3402017-02-19 10:28:42 +0200174# validForResourceTypes usage
175# validForResourceTypes:
176# - VF
177# - VL
178deploymentResourceArtifacts:
agileone821ddb42019-04-15 13:06:45 -0700179 cdsBlueprint:
180 displayName: "CDS Blueprint"
181 type: CONTROLLER_BLUEPRINT_ARCHIVE
182 description: "CDS deployment artifact"
183 fileExtension: "zip"
Michael Landoed64b5e2017-06-09 03:19:04 +0300184# heat:
185# displayName: "Base HEAT Template"
186# type: HEAT
187# validForResourceTypes: *allResourceTypes
188# heatVol:
189# displayName: "Volume HEAT Template"
190# type: HEAT_VOL
191# validForResourceTypes: *allResourceTypes
192# heatNet:
193# displayName: "Network HEAT Template"
194# type: HEAT_NET
195# validForResourceTypes: *allResourceTypes
Tal Gitelman51d50f02017-12-10 18:55:03 +0200196
Michael Lando451a3402017-02-19 10:28:42 +0200197deploymentResourceInstanceArtifacts:
198 heatEnv:
199 displayName: "HEAT ENV"
200 type: HEAT_ENV
201 description: "Auto-generated HEAT Environment deployment artifact"
202 fileExtension: "env"
Michael Landoed64b5e2017-06-09 03:19:04 +0300203 VfHeatEnv:
204 displayName: "VF HEAT ENV"
205 type: HEAT_ENV
206 description: "VF Auto-generated HEAT Environment deployment artifact"
207 fileExtension: "env"
Michael Lando451a3402017-02-19 10:28:42 +0200208
209#tosca artifacts placeholders
210toscaArtifacts:
211 assetToscaTemplate:
212 artifactName: -template.yml
213 displayName: Tosca Template
214 type: TOSCA_TEMPLATE
215 description: TOSCA representation of the asset
216 assetToscaCsar:
217 artifactName: -csar.csar
218 displayName: Tosca Model
219 type: TOSCA_CSAR
220 description: TOSCA definition package of the asset
221
Michael Lando5b593492018-07-29 16:13:45 +0300222
Michael Lando451a3402017-02-19 10:28:42 +0200223#Informational artifacts placeHolder
224excludeResourceCategory:
225 - Generic
Tal Gitelman51d50f02017-12-10 18:55:03 +0200226excludeResourceType:
227 - PNF
Michael Lando451a3402017-02-19 10:28:42 +0200228informationalResourceArtifacts:
229 features:
230 displayName: Features
231 type: OTHER
232 capacity:
233 displayName: Capacity
234 type: OTHER
235 vendorTestResult:
236 displayName: Vendor Test Result
237 type: OTHER
238 testScripts:
239 displayName: Test Scripts
240 type: OTHER
Michael Landoed64b5e2017-06-09 03:19:04 +0300241 CloudQuestionnaire:
Michael Lando451a3402017-02-19 10:28:42 +0200242 displayName: Cloud Questionnaire (completed)
243 type: OTHER
244 HEATTemplateFromVendor:
245 displayName: HEAT Template from Vendor
246 type: HEAT
247 resourceSecurityTemplate:
248 displayName: Resource Security Template
249 type: OTHER
Tal Gitelman51d50f02017-12-10 18:55:03 +0200250
Michael Lando451a3402017-02-19 10:28:42 +0200251excludeServiceCategory:
252
253informationalServiceArtifacts:
254 serviceArtifactPlan:
255 displayName: Service Artifact Plan
256 type: OTHER
257 summaryOfImpactsToECOMPElements:
258 displayName: Summary of impacts to ECOMP elements,OSSs, BSSs
259 type: OTHER
260 controlLoopFunctions:
261 displayName: Control Loop Functions
262 type: OTHER
263 dimensioningInfo:
264 displayName: Dimensioning Info
265 type: OTHER
266 affinityRules:
267 displayName: Affinity Rules
268 type: OTHER
269 operationalPolicies:
270 displayName: Operational Policies
271 type: OTHER
272 serviceSpecificPolicies:
273 displayName: Service-specific Policies
274 type: OTHER
275 engineeringRules:
276 displayName: Engineering Rules (ERD)
277 type: OTHER
278 distributionInstructions:
279 displayName: Distribution Instructions
280 type: OTHER
281 certificationTestResults:
282 displayName: TD Certification Test Results
283 type: OTHER
284 deploymentVotingRecord:
285 displayName: Deployment Voting Record
286 type: OTHER
287 serviceQuestionnaire:
288 displayName: Service Questionnaire
289 type: OTHER
290 serviceSecurityTemplate:
291 displayName: Service Security Template
292 type: OTHER
Tal Gitelman51d50f02017-12-10 18:55:03 +0200293
Michael Lando451a3402017-02-19 10:28:42 +0200294serviceApiArtifacts:
295 configuration:
296 displayName: Configuration
297 type: OTHER
298 instantiation:
299 displayName: Instantiation
300 type: OTHER
301 monitoring:
302 displayName: Monitoring
303 type: OTHER
304 reporting:
305 displayName: Reporting
306 type: OTHER
307 logging:
308 displayName: Logging
309 type: OTHER
310 testing:
311 displayName: Testing
312 type: OTHER
313
Michael Lando451a3402017-02-19 10:28:42 +0200314additionalInformationMaxNumberOfKeys: 50
315
316systemMonitoring:
317 enabled: false
318 isProxy: false
319 probeIntervalInSeconds: 15
320
321defaultHeatArtifactTimeoutMinutes: 60
322
323serviceDeploymentArtifacts:
agileone821ddb42019-04-15 13:06:45 -0700324 CONTROLLER_BLUEPRINT_ARCHIVE:
325 acceptedTypes:
326 - zip
Michael Lando451a3402017-02-19 10:28:42 +0200327 YANG_XML:
328 acceptedTypes:
329 - xml
Michael Landoed64b5e2017-06-09 03:19:04 +0300330 VNF_CATALOG:
331 acceptedTypes:
332 - xml
333 MODEL_INVENTORY_PROFILE:
334 acceptedTypes:
335 - xml
336 MODEL_QUERY_SPEC:
337 acceptedTypes:
338 - xml
Tal Gitelman51d50f02017-12-10 18:55:03 +0200339 UCPE_LAYER_2_CONFIGURATION:
340 acceptedTypes:
341 - xml
342
Michael Landoed64b5e2017-06-09 03:19:04 +0300343#AAI Artifacts
Michael Lando451a3402017-02-19 10:28:42 +0200344 AAI_SERVICE_MODEL:
345 acceptedTypes:
346 - xml
347 AAI_VF_MODULE_MODEL:
348 acceptedTypes:
349 - xml
350 AAI_VF_INSTANCE_MODEL:
351 acceptedTypes:
Michael Lando5b593492018-07-29 16:13:45 +0300352 - xml
Michael Lando451a3402017-02-19 10:28:42 +0200353 OTHER:
354 acceptedTypes:
355
356resourceDeploymentArtifacts:
357 HEAT:
358 acceptedTypes:
359 - yaml
360 - yml
Michael Landoed64b5e2017-06-09 03:19:04 +0300361 validForResourceTypes: *allResourceTypes
Michael Lando451a3402017-02-19 10:28:42 +0200362 HEAT_VOL:
363 acceptedTypes:
364 - yaml
365 - yml
Michael Landoed64b5e2017-06-09 03:19:04 +0300366 validForResourceTypes: *allResourceTypes
Tal Gitelman51d50f02017-12-10 18:55:03 +0200367 HEAT_NET:
368 acceptedTypes:
369 - yaml
370 - yml
371 validForResourceTypes: *allResourceTypes
Michael Landoed64b5e2017-06-09 03:19:04 +0300372 HEAT_NESTED:
373 acceptedTypes:
374 - yaml
375 - yml
376 validForResourceTypes: *allResourceTypes
377 HEAT_ARTIFACT:
378 acceptedTypes:
379 validForResourceTypes: *allResourceTypes
Liang Dingafbcb0f2019-01-29 00:00:54 -0800380 CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT:
381 acceptedTypes:
382 - zip
Liang Dingfffb8412019-03-27 23:10:03 -0700383 - tgz
384 - csar
Liang Dingafbcb0f2019-01-29 00:00:54 -0800385 validForResourceTypes: *allResourceTypes
Michael Lando451a3402017-02-19 10:28:42 +0200386 YANG_XML:
387 acceptedTypes:
388 - xml
Michael Landoed64b5e2017-06-09 03:19:04 +0300389 validForResourceTypes: *allResourceTypes
390 VNF_CATALOG:
391 acceptedTypes:
392 - xml
393 validForResourceTypes: *allResourceTypes
394 VF_LICENSE:
395 acceptedTypes:
396 - xml
397 validForResourceTypes: *allResourceTypes
398 VENDOR_LICENSE:
399 acceptedTypes:
400 - xml
401 validForResourceTypes: *allResourceTypes
402 MODEL_INVENTORY_PROFILE:
403 acceptedTypes:
404 - xml
405 validForResourceTypes: *allResourceTypes
406 MODEL_QUERY_SPEC:
407 acceptedTypes:
408 - xml
409 validForResourceTypes: *allResourceTypes
Tal Gitelman51d50f02017-12-10 18:55:03 +0200410 LIFECYCLE_OPERATIONS:
411 acceptedTypes:
412 - yaml
413 - yml
414 validForResourceTypes:
415 - VF
416 - VFC
417 VES_EVENTS:
418 acceptedTypes:
419 - yaml
420 - yml
dermot123d83268a2019-03-13 12:37:35 +0000421 validForResourceTypes:
422 - VFC
423 - CP
424 - VL
425 - VF
426 - VFCMT
427 - Abstract
428 - CVFC
429 - PNF
Tal Gitelman51d50f02017-12-10 18:55:03 +0200430 PERFORMANCE_COUNTER:
431 acceptedTypes:
432 - csv
433 validForResourceTypes: *allResourceTypes
Michael Landoed64b5e2017-06-09 03:19:04 +0300434 APPC_CONFIG:
435 acceptedTypes:
436 validForResourceTypes:
437 - VF
Michael Landoed64b5e2017-06-09 03:19:04 +0300438 DCAE_TOSCA:
439 acceptedTypes:
440 - yml
441 - yaml
442 validForResourceTypes:
443 - VF
Tal Gitelman51d50f02017-12-10 18:55:03 +0200444 - VFCMT
Michael Landoed64b5e2017-06-09 03:19:04 +0300445 DCAE_JSON:
446 acceptedTypes:
447 - json
448 validForResourceTypes:
449 - VF
Tal Gitelman51d50f02017-12-10 18:55:03 +0200450 - VFCMT
Michael Landoed64b5e2017-06-09 03:19:04 +0300451 DCAE_POLICY:
452 acceptedTypes:
453 - emf
454 validForResourceTypes:
455 - VF
Tal Gitelman51d50f02017-12-10 18:55:03 +0200456 - VFCMT
Michael Landoed64b5e2017-06-09 03:19:04 +0300457 DCAE_DOC:
458 acceptedTypes:
459 validForResourceTypes:
Tal Gitelman51d50f02017-12-10 18:55:03 +0200460 - VF
461 - VFCMT
Michael Landoed64b5e2017-06-09 03:19:04 +0300462 DCAE_EVENT:
463 acceptedTypes:
464 validForResourceTypes:
465 - VF
Tal Gitelman51d50f02017-12-10 18:55:03 +0200466 - VFCMT
Michael Lando451a3402017-02-19 10:28:42 +0200467 AAI_VF_MODEL:
468 acceptedTypes:
469 - xml
470 validForResourceTypes:
471 - VF
472 AAI_VF_MODULE_MODEL:
473 acceptedTypes:
474 - xml
475 validForResourceTypes:
Michael Landoed64b5e2017-06-09 03:19:04 +0300476 - VF
Michael Lando451a3402017-02-19 10:28:42 +0200477 OTHER:
478 acceptedTypes:
Michael Landoed64b5e2017-06-09 03:19:04 +0300479 validForResourceTypes: *allResourceTypes
Michael Landoed64b5e2017-06-09 03:19:04 +0300480 SNMP_POLL:
481 acceptedTypes:
482 validForResourceTypes: *allResourceTypes
483 SNMP_TRAP:
484 acceptedTypes:
485 validForResourceTypes: *allResourceTypes
dermot123d83268a2019-03-13 12:37:35 +0000486 PM_DICTIONARY:
487 acceptedTypes:
488 - yaml
489 - yml
490 validForResourceTypes:
491 - VF
492 - PNF
kooper570fe142019-04-03 13:23:08 +0000493 YANG_MODULE:
494 acceptedTypes:
495 - yang
496 validForResourceTypes:
497 - VF
498 - PNF
499 ANSIBLE_PLAYBOOK:
500 acceptedTypes:
501 - yaml
502 - yml
503 validForResourceTypes:
504 - VF
505 - PNF
506 ONBOARDED_PACKAGE:
507 acceptedTypes:
508 - csar
aribeiroccc1f362019-09-03 08:37:55 +0000509 - zip
kooper570fe142019-04-03 13:23:08 +0000510 validForResourceTypes:
511 - VF
512 - PNF
agileone821ddb42019-04-15 13:06:45 -0700513 CONTROLLER_BLUEPRINT_ARCHIVE:
514 acceptedTypes:
515 - zip
516 validForResourceTypes:
517 - VF
518 - PNF
Tal Gitelman51d50f02017-12-10 18:55:03 +0200519
Michael Lando451a3402017-02-19 10:28:42 +0200520resourceInstanceDeploymentArtifacts:
521 HEAT_ENV:
522 acceptedTypes:
523 - env
Michael Landoed64b5e2017-06-09 03:19:04 +0300524 VF_MODULES_METADATA:
525 acceptedTypes:
526 - json
Tal Gitelman51d50f02017-12-10 18:55:03 +0200527 VES_EVENTS:
528 acceptedTypes:
529 - yaml
530 - yml
531 PERFORMANCE_COUNTER:
532 acceptedTypes:
533 - csv
Michael Landoed64b5e2017-06-09 03:19:04 +0300534 DCAE_INVENTORY_TOSCA:
535 acceptedTypes:
536 - yml
537 - yaml
538 DCAE_INVENTORY_JSON:
539 acceptedTypes:
540 - json
541 DCAE_INVENTORY_POLICY:
542 acceptedTypes:
543 - emf
544 DCAE_INVENTORY_DOC:
545 acceptedTypes:
546 DCAE_INVENTORY_BLUEPRINT:
547 acceptedTypes:
548 DCAE_INVENTORY_EVENT:
549 acceptedTypes:
Michael Landoed64b5e2017-06-09 03:19:04 +0300550 SNMP_POLL:
551 acceptedTypes:
552 validForResourceTypes: *allResourceTypes
553 SNMP_TRAP:
554 acceptedTypes:
555 validForResourceTypes: *allResourceTypes
Michael Landoed64b5e2017-06-09 03:19:04 +0300556
557resourceInformationalArtifacts:
558 CHEF:
559 acceptedTypes:
560 validForResourceTypes: *allResourceTypes
561 PUPPET:
562 acceptedTypes:
563 validForResourceTypes: *allResourceTypes
564 SHELL:
565 acceptedTypes:
566 validForResourceTypes: *allResourceTypes
567 YANG:
568 acceptedTypes:
569 validForResourceTypes: *allResourceTypes
570 YANG_XML:
571 acceptedTypes:
572 validForResourceTypes: *allResourceTypes
573 HEAT:
574 acceptedTypes:
575 validForResourceTypes: *allResourceTypes
576 BPEL:
577 acceptedTypes:
578 validForResourceTypes: *allResourceTypes
579 DG_XML:
580 acceptedTypes:
581 validForResourceTypes: *allResourceTypes
582 MURANO_PKG:
583 acceptedTypes:
584 validForResourceTypes: *allResourceTypes
585 OTHER:
586 acceptedTypes:
Tal Gitelman51d50f02017-12-10 18:55:03 +0200587 validForResourceTypes:
588 - VFC
589 - CVFC
590 - CP
591 - VL
592 - VF
593 - VFCMT
594 - Abstract
595 - PNF
aribeiro608be262019-10-03 15:44:48 +0100596 PNF_SW_INFORMATION:
597 acceptedTypes:
598 - yml
599 - yaml
600 validForResourceTypes:
601 - PNF
Michael Landoed64b5e2017-06-09 03:19:04 +0300602 SNMP_POLL:
603 acceptedTypes:
604 validForResourceTypes: *allResourceTypes
605 SNMP_TRAP:
606 acceptedTypes:
607 validForResourceTypes: *allResourceTypes
608 GUIDE:
609 acceptedTypes:
610 validForResourceTypes:
611 - VF
612 - VFC
Tal Gitelman51d50f02017-12-10 18:55:03 +0200613 - CVFC
Michael Lando451a3402017-02-19 10:28:42 +0200614
615resourceInformationalDeployedArtifacts:
616
Michael Lando451a3402017-02-19 10:28:42 +0200617requirementsToFulfillBeforeCert:
Michael Lando451a3402017-02-19 10:28:42 +0200618
Michael Landoed64b5e2017-06-09 03:19:04 +0300619capabilitiesToConsumeBeforeCert:
Tal Gitelman51d50f02017-12-10 18:55:03 +0200620
Michael Lando451a3402017-02-19 10:28:42 +0200621unLoggedUrls:
622 - /sdc2/rest/healthCheck
623
624cleanComponentsConfiguration:
625 cleanIntervalInMinutes: 1440
626 componentsToClean:
627 - Resource
628 - Service
629
630artifactsIndex: resources
Michael Landoed64b5e2017-06-09 03:19:04 +0300631
Michael Landoed64b5e2017-06-09 03:19:04 +0300632heatEnvArtifactHeader: ""
633heatEnvArtifactFooter: ""
Michael Lando451a3402017-02-19 10:28:42 +0200634
Michael Landoed64b5e2017-06-09 03:19:04 +0300635onboarding:
636 protocol: http
637 host: localhost
638 port: 8080
639 downloadCsarUri: "/onboarding-api/v1.0/vendor-software-products/packages"
Tal Gitelman51d50f02017-12-10 18:55:03 +0200640 healthCheckUri: "/onboarding-api/v1.0/healthcheck"
641
642switchoverDetector:
643 gBeFqdn: AIO-BE.ecomp.idns.cip.com
644 gFeFqdn: AIO-FE.ecomp.idns.cip.com
645 beVip: 0.0.0.0
646 feVip: 0.0.0.0
647 beResolveAttempts: 3
648 feResolveAttempts: 3
649 enabled: false
650 interval: 60
651 changePriorityUser: ecompasdc
652 changePriorityPassword: ecompasdc123
653 publishNetworkUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/update_network?user=root"
654 publishNetworkBody: '{"note":"publish network"}'
655 groups:
656 beSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-BE.ecomp.idns.com?user=root",
657 changePriorityBody: '{"name":"AIO-BE.ecomp.idns.com","uri":"/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-BE.ecomp.idns.com","no_ad_redirection":false,"v4groups":{"failover_groups":["/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_mg_be","/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_bs_be"],"failover_policy":["FAILALL"]},"comment":"AIO BE G-fqdn","intended_app_proto":"DNS"}'}
658 feSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-FE.ecomp.idns.com?user=root",
659 changePriorityBody: '{"comment":"AIO G-fqdn","name":"AIO-FE.ecomp.idns.com","v4groups":{"failover_groups":["/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_mg_fe","/crt/CipDomain.ECOMP-ASDC-DEVST/config/groups/group_bs_fe"],"failover_policy":["FAILALL"]},"no_ad_redirection":false,"intended_app_proto":"DNS","uri":"/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-FE.ecomp.idns.com"}'}
660
Michael Lando451a3402017-02-19 10:28:42 +0200661applicationL1Cache:
662 datatypes:
Michael Landoed64b5e2017-06-09 03:19:04 +0300663 enabled: true
Michael Lando451a3402017-02-19 10:28:42 +0200664 firstRunDelay: 10
665 pollIntervalInSec: 60
666
667applicationL2Cache:
Tal Gitelman51d50f02017-12-10 18:55:03 +0200668 enabled: true
Michael Lando451a3402017-02-19 10:28:42 +0200669 catalogL1Cache:
Tal Gitelman51d50f02017-12-10 18:55:03 +0200670 enabled: true
Michael Lando451a3402017-02-19 10:28:42 +0200671 resourcesSizeInCache: 300
672 servicesSizeInCache: 200
673 productsSizeInCache: 100
674 queue:
Michael Landoed64b5e2017-06-09 03:19:04 +0300675 syncIntervalInSecondes: 43200
676 waitOnShutDownInMinutes: 10
Michael Lando451a3402017-02-19 10:28:42 +0200677 numberOfCacheWorkers: 4
678
679toscaValidators:
Tal Gitelman51d50f02017-12-10 18:55:03 +0200680 stringMaxLength: 2500
681
Michael Landoed64b5e2017-06-09 03:19:04 +0300682disableAudit: false
683
684vfModuleProperties:
685 min_vf_module_instances:
686 forBaseModule: 1
687 forNonBaseModule: 0
688 max_vf_module_instances:
689 forBaseModule: 1
690 forNonBaseModule:
691 initial_count:
692 forBaseModule: 1
693 forNonBaseModule: 0
694 vf_module_type:
695 forBaseModule: Base
696 forNonBaseModule: Expansion
Tal Gitelman51d50f02017-12-10 18:55:03 +0200697
698genericAssetNodeTypes:
699 VFC: org.openecomp.resource.abstract.nodes.VFC
700 CVFC: org.openecomp.resource.abstract.nodes.VFC
701 VF : org.openecomp.resource.abstract.nodes.VF
702 PNF: org.openecomp.resource.abstract.nodes.PNF
Liang Dingafbcb0f2019-01-29 00:00:54 -0800703 Service: org.openecomp.resource.abstract.nodes.service