add file extentions for cloud specific artifacts
[sdc.git] / catalog-be / src / main / resources / config / configuration.yaml
1 identificationHeaderFields:
2    - HTTP_IV_USER
3    - HTTP_CSP_FIRSTNAME
4    - HTTP_CSP_LASTNAME
5    - HTTP_IV_REMOTE_ADDRESS
6    - HTTP_CSP_WSTYPE
7
8 # catalog backend hostname
9 beFqdn: localhost
10 # sdccatalog.com
11
12 # catalog backend http port
13 beHttpPort: 8080
14
15 # catalog backend http context
16 beContext: /sdc/rest/config/get
17
18 # catalog backend protocol
19 beProtocol: http
20
21 # catalog backend ssl port
22 beSslPort: 8443
23
24 version: 1.1.0
25 released: 2012-11-30
26 toscaConformanceLevel: 9.0
27 minToscaConformanceLevel: 3.0
28
29 # These values are necessary for running upgrade migration 1710.0 process
30 enableAutoHealing: false
31 appVersion: 1.1.0
32 resourcesForUpgrade:
33  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
38 skipUpgradeFailedVfs: true
39 skipUpgradeVSPs: true
40 autoHealingOwner: jh0003
41 supportAllottedResourcesAndProxy: true
42 deleteLockTimeoutInSeconds: 60
43 maxDeleteComponents: 10
44
45 titanCfgFile: /home/vagrant/catalog-be/config/catalog-be/titan.properties
46 titanInMemoryGraph: false
47 titanLockTimeout: 1800
48
49 # The interval to try and reconnect to titan DB when it is down during ASDC startup:
50 titanReconnectIntervalInSeconds: 3
51
52 # The read timeout towards Titan DB when health check is invoked:
53 titanHealthCheckReadTimeout: 1
54
55 # The interval to try and reconnect to Elasticsearch when it is down during ASDC startup:
56 esReconnectIntervalInSeconds: 3
57 uebHealthCheckReconnectIntervalInSeconds: 15
58 uebHealthCheckReadTimeout: 4
59
60 # Protocols
61 protocols:
62    - http
63    - https
64
65 # Default imports
66 defaultImports:
67    - nodes:
68         file: nodes.yml
69    - datatypes:
70         file: data.yml
71    - capabilities:
72         file: capabilities.yml
73    - relationships:
74         file: relationships.yml
75    - groups:
76         file: groups.yml
77    - policies:
78         file: policies.yml
79    - annotations:
80         file: annotations.yml
81
82 # Users
83 users:
84     tom: passwd
85     bob: passwd
86
87 neo4j:
88     host: neo4jhost
89     port: 7474
90     user: neo4j
91     password: "12345"
92
93 cassandraConfig:
94     cassandraHosts: [192.168.33.10]
95     cassandraPort: 9042
96     localDataCenter: DC-sdc-iltlv650
97     reconnectTimeout : 30000
98     authenticate: true
99     username: asdc_user
100     password: Aa1234%^!
101     ssl: true
102     truststorePath : /opt/app/jetty/base/be/config/.truststore
103     truststorePassword : Aa123456
104     keySpaces:
105         - { name: dox, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
106         - { name: sdcaudit, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
107         - { name: sdcartifact, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
108         - { name: sdccomponent, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}       
109         - { name: sdcrepository, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['DC-sdc-iltlv650', '1']}
110
111
112 #Application-specific settings of ES
113 elasticSearch:
114     # Mapping of index prefix to time-based frame. For example, if below is configured:
115     #
116     # - indexPrefix: auditingevents
117     #    creationPeriod: minute
118     #
119     # 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.
120     # Another object created on 2015-12-23 13:25:54, will enter "auditingevents-2015-12-23-13-25" index.
121     # If creationPeriod: month, both of the above will enter "auditingevents-2015-12" index.
122     #
123     # PLEASE NOTE: the timestamps are created in UTC/GMT timezone! This is needed so that timestamps will be correctly presented in Kibana.
124     #
125     # Legal values for creationPeriod - year, month, day, hour, minute, none (meaning no time-based behaviour).
126     #
127     # If no creationPeriod is configured for indexPrefix, default behavour is creationPeriod: month.
128     
129     indicesTimeFrequency:
130       - indexPrefix: auditingevents
131         creationPeriod: month
132       - indexPrefix: monitoring_events
133         creationPeriod: month
134
135 artifactTypes:
136    - CHEF
137    - PUPPET
138    - SHELL
139    - YANG
140    - YANG_XML
141    - HEAT
142    - BPEL
143    - DG_XML
144    - MURANO_PKG
145    - WORKFLOW
146    - NETWORK_CALL_FLOW
147    - TOSCA_TEMPLATE
148    - TOSCA_CSAR
149    - AAI_SERVICE_MODEL
150    - AAI_VF_MODEL
151    - AAI_VF_MODULE_MODEL
152    - AAI_VF_INSTANCE_MODEL
153    - OTHER
154    - SNMP_POLL
155    - SNMP_TRAP
156    - GUIDE
157
158 licenseTypes:
159    - User
160    - Installation
161    - CPU
162
163 #Deployment artifacts placeHolder
164 resourceTypes: &allResourceTypes
165   - VFC
166   - CP
167   - VL
168   - VF
169   - CR
170   - VFCMT
171   - Abstract
172   - CVFC
173
174 # validForResourceTypes usage
175 #     validForResourceTypes:
176 #        - VF
177 #        - VL
178 deploymentResourceArtifacts:
179 #  heat:
180 #      displayName: "Base HEAT Template"
181 #      type: HEAT
182 #      validForResourceTypes: *allResourceTypes
183 #  heatVol:
184 #      displayName: "Volume HEAT Template"
185 #      type: HEAT_VOL
186 #      validForResourceTypes: *allResourceTypes
187 #  heatNet:
188 #      displayName: "Network HEAT Template"
189 #      type: HEAT_NET
190 #      validForResourceTypes: *allResourceTypes
191
192 deploymentResourceInstanceArtifacts:
193   heatEnv:
194       displayName: "HEAT ENV"
195       type: HEAT_ENV
196       description: "Auto-generated HEAT Environment deployment artifact"
197       fileExtension: "env"
198   VfHeatEnv:
199       displayName: "VF HEAT ENV"
200       type: HEAT_ENV
201       description: "VF Auto-generated HEAT Environment deployment artifact"
202       fileExtension: "env"
203
204 #tosca artifacts placeholders
205 toscaArtifacts:
206   assetToscaTemplate:
207       artifactName: -template.yml
208       displayName: Tosca Template
209       type: TOSCA_TEMPLATE
210       description: TOSCA representation of the asset
211   assetToscaCsar:
212       artifactName: -csar.csar
213       displayName: Tosca Model
214       type: TOSCA_CSAR
215       description: TOSCA definition package of the asset
216
217
218 #Informational artifacts placeHolder
219 excludeResourceCategory:
220   - Generic
221 excludeResourceType:
222   - PNF
223   - CR
224 informationalResourceArtifacts:
225   features:
226       displayName: Features
227       type: OTHER
228   capacity:
229       displayName: Capacity
230       type: OTHER
231   vendorTestResult:
232       displayName: Vendor Test Result
233       type: OTHER
234   testScripts:
235       displayName: Test Scripts
236       type: OTHER
237   CloudQuestionnaire:
238       displayName: Cloud Questionnaire (completed)
239       type: OTHER
240   HEATTemplateFromVendor:
241       displayName: HEAT Template from Vendor
242       type: HEAT
243   resourceSecurityTemplate:
244       displayName: Resource Security Template
245       type: OTHER
246
247 excludeServiceCategory:
248
249 informationalServiceArtifacts:
250   serviceArtifactPlan:
251       displayName: Service Artifact Plan
252       type: OTHER
253   summaryOfImpactsToECOMPElements:
254       displayName: Summary of impacts to ECOMP elements,OSSs, BSSs
255       type: OTHER
256   controlLoopFunctions:
257       displayName: Control Loop Functions
258       type: OTHER
259   dimensioningInfo:
260       displayName: Dimensioning Info
261       type: OTHER
262   affinityRules:
263       displayName: Affinity Rules
264       type: OTHER
265   operationalPolicies:
266       displayName: Operational Policies
267       type: OTHER
268   serviceSpecificPolicies:
269       displayName: Service-specific Policies
270       type: OTHER
271   engineeringRules:
272       displayName: Engineering Rules (ERD)
273       type: OTHER
274   distributionInstructions:
275       displayName: Distribution Instructions
276       type: OTHER
277   certificationTestResults:
278       displayName: TD Certification Test Results
279       type: OTHER
280   deploymentVotingRecord:
281       displayName: Deployment Voting Record
282       type: OTHER
283   serviceQuestionnaire:
284       displayName: Service Questionnaire
285       type: OTHER
286   serviceSecurityTemplate:
287       displayName: Service Security Template
288       type: OTHER
289
290 serviceApiArtifacts:
291   configuration:
292       displayName: Configuration
293       type: OTHER
294   instantiation:
295       displayName: Instantiation
296       type: OTHER
297   monitoring:
298       displayName: Monitoring
299       type: OTHER
300   reporting:
301       displayName: Reporting
302       type: OTHER
303   logging:
304       displayName: Logging
305       type: OTHER
306   testing:
307       displayName: Testing
308       type: OTHER
309
310 additionalInformationMaxNumberOfKeys: 50
311
312 systemMonitoring:
313     enabled: false
314     isProxy: false
315     probeIntervalInSeconds: 15
316
317 defaultHeatArtifactTimeoutMinutes: 60
318
319 serviceDeploymentArtifacts:
320     YANG_XML:
321         acceptedTypes:
322             - xml
323     VNF_CATALOG:
324         acceptedTypes:
325             - xml
326     MODEL_INVENTORY_PROFILE:
327         acceptedTypes:
328             - xml
329     MODEL_QUERY_SPEC:
330         acceptedTypes:
331             - xml
332     UCPE_LAYER_2_CONFIGURATION:
333         acceptedTypes:
334             - xml
335
336 #AAI Artifacts
337     AAI_SERVICE_MODEL:
338         acceptedTypes:
339             - xml
340     AAI_VF_MODULE_MODEL:
341         acceptedTypes:
342             - xml
343     AAI_VF_INSTANCE_MODEL:
344         acceptedTypes:
345             - xml 
346     CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT:
347         acceptedTypes:
348             - zip
349             - tgz
350             - csar
351     OTHER:
352         acceptedTypes:
353
354 resourceDeploymentArtifacts:
355     HEAT:
356         acceptedTypes:
357             - yaml
358             - yml
359         validForResourceTypes: *allResourceTypes
360     HEAT_VOL:
361         acceptedTypes:
362             - yaml
363             - yml
364         validForResourceTypes: *allResourceTypes
365     HEAT_NET:
366         acceptedTypes:
367             - yaml
368             - yml
369         validForResourceTypes: *allResourceTypes
370     HEAT_NESTED:
371         acceptedTypes:
372             - yaml
373             - yml
374         validForResourceTypes: *allResourceTypes
375     HEAT_ARTIFACT:
376         acceptedTypes:
377         validForResourceTypes: *allResourceTypes
378     CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT:
379         acceptedTypes:
380             - zip
381         validForResourceTypes: *allResourceTypes
382     YANG_XML:
383         acceptedTypes:
384             - xml
385         validForResourceTypes: *allResourceTypes
386     VNF_CATALOG:
387         acceptedTypes:
388             - xml
389         validForResourceTypes: *allResourceTypes
390     VF_LICENSE:
391         acceptedTypes:
392             - xml
393         validForResourceTypes: *allResourceTypes
394     VENDOR_LICENSE:
395         acceptedTypes:
396             - xml
397         validForResourceTypes: *allResourceTypes
398     MODEL_INVENTORY_PROFILE:
399         acceptedTypes:
400             - xml
401         validForResourceTypes: *allResourceTypes
402     MODEL_QUERY_SPEC:
403         acceptedTypes:
404             - xml
405         validForResourceTypes: *allResourceTypes
406     LIFECYCLE_OPERATIONS:
407         acceptedTypes:
408             - yaml
409             - yml
410         validForResourceTypes:
411             - VF
412             - VFC
413     VES_EVENTS:
414         acceptedTypes:
415             - yaml
416             - yml
417         validForResourceTypes:
418             - VFC
419             - CP
420             - VL
421             - VF
422             - CR
423             - VFCMT
424             - Abstract
425             - CVFC
426             - PNF
427     PERFORMANCE_COUNTER:
428         acceptedTypes:
429             - csv
430         validForResourceTypes: *allResourceTypes
431     APPC_CONFIG:
432         acceptedTypes:
433         validForResourceTypes:
434             - VF
435     DCAE_TOSCA:
436         acceptedTypes:
437             - yml
438             - yaml
439         validForResourceTypes:
440             - VF
441             - VFCMT
442     DCAE_JSON:
443         acceptedTypes:
444             - json
445         validForResourceTypes:
446             - VF
447             - VFCMT
448     DCAE_POLICY:
449         acceptedTypes:
450             - emf
451         validForResourceTypes:
452             - VF
453             - VFCMT
454     DCAE_DOC:
455         acceptedTypes:
456         validForResourceTypes:
457             - VF
458             - VFCMT       
459     DCAE_EVENT:
460         acceptedTypes:
461         validForResourceTypes:
462             - VF
463             - VFCMT
464     AAI_VF_MODEL:
465         acceptedTypes:
466             - xml
467         validForResourceTypes:
468             - VF
469     AAI_VF_MODULE_MODEL:
470         acceptedTypes:
471             - xml
472         validForResourceTypes:
473             - VF
474     OTHER:
475         acceptedTypes:
476         validForResourceTypes:
477           - VFC
478           - CP
479           - VL
480           - VF
481           - VFCMT
482           - Abstract
483           - CVFC
484           - PNF
485     SNMP_POLL:
486         acceptedTypes:
487         validForResourceTypes: *allResourceTypes
488     SNMP_TRAP:
489         acceptedTypes:
490         validForResourceTypes: *allResourceTypes
491     PM_DICTIONARY:
492         acceptedTypes:
493             - yaml
494             - yml
495         validForResourceTypes:
496             - VF
497             - PNF
498     YANG_MODULE:
499         acceptedTypes:
500             - yang
501         validForResourceTypes:
502             - VF
503             - PNF
504     ANSIBLE_PLAYBOOK:
505         acceptedTypes:
506             - yaml
507             - yml
508         validForResourceTypes:
509             - VF
510             - PNF
511     ONBOARDED_PACKAGE:
512         acceptedTypes:
513             - csar
514         validForResourceTypes:
515             - VF
516             - PNF
517
518 resourceInstanceDeploymentArtifacts:
519     HEAT_ENV:
520         acceptedTypes:
521             - env
522     VF_MODULES_METADATA:
523         acceptedTypes:
524             - json
525     VES_EVENTS:
526         acceptedTypes:
527             - yaml
528             - yml
529     PERFORMANCE_COUNTER:
530         acceptedTypes:
531             - csv
532     DCAE_INVENTORY_TOSCA:
533         acceptedTypes:
534             - yml
535             - yaml
536     DCAE_INVENTORY_JSON:
537         acceptedTypes:
538             - json
539     DCAE_INVENTORY_POLICY:
540       acceptedTypes:
541             - emf
542     DCAE_INVENTORY_DOC:
543       acceptedTypes:
544     DCAE_INVENTORY_BLUEPRINT:
545       acceptedTypes:
546     DCAE_INVENTORY_EVENT:
547       acceptedTypes:
548     SNMP_POLL:
549         acceptedTypes:
550         validForResourceTypes: *allResourceTypes
551     SNMP_TRAP:
552         acceptedTypes:
553         validForResourceTypes: *allResourceTypes
554
555 resourceInformationalArtifacts:
556     CHEF:
557         acceptedTypes:
558         validForResourceTypes: *allResourceTypes
559     PUPPET:
560         acceptedTypes:
561         validForResourceTypes: *allResourceTypes
562     SHELL:
563         acceptedTypes:
564         validForResourceTypes: *allResourceTypes
565     YANG:
566         acceptedTypes:
567         validForResourceTypes: *allResourceTypes
568     YANG_XML:
569         acceptedTypes:
570         validForResourceTypes: *allResourceTypes
571     HEAT:
572         acceptedTypes:
573         validForResourceTypes: *allResourceTypes
574     BPEL:
575         acceptedTypes:
576         validForResourceTypes: *allResourceTypes
577     DG_XML:
578         acceptedTypes:
579         validForResourceTypes: *allResourceTypes
580     MURANO_PKG:
581         acceptedTypes:
582         validForResourceTypes: *allResourceTypes
583     OTHER:
584         acceptedTypes:
585         validForResourceTypes: 
586             - VFC
587             - CVFC
588             - CP
589             - VL
590             - VF
591             - CR
592             - VFCMT
593             - Abstract
594             - PNF
595     SNMP_POLL:
596         acceptedTypes:
597         validForResourceTypes: *allResourceTypes
598     SNMP_TRAP:
599         acceptedTypes:
600         validForResourceTypes: *allResourceTypes
601     GUIDE:
602         acceptedTypes:
603         validForResourceTypes:
604             - VF
605             - VFC
606             - CVFC
607
608 resourceInformationalDeployedArtifacts:
609
610 requirementsToFulfillBeforeCert:
611
612 capabilitiesToConsumeBeforeCert:
613
614 unLoggedUrls:
615    - /sdc2/rest/healthCheck
616
617 cleanComponentsConfiguration:
618     cleanIntervalInMinutes: 1440
619     componentsToClean:
620        - Resource
621        - Service
622
623 artifactsIndex: resources
624
625 heatEnvArtifactHeader: ""
626 heatEnvArtifactFooter: ""
627
628 onboarding:
629     protocol: http
630     host: localhost
631     port: 8080
632     downloadCsarUri: "/onboarding-api/v1.0/vendor-software-products/packages"
633     healthCheckUri: "/onboarding-api/v1.0/healthcheck"
634
635 dcae:
636     protocol: http
637     host: 127.0.0.1
638     port: 8080
639     healthCheckUri: "/dcae/healthCheck"
640
641 switchoverDetector:
642     gBeFqdn: AIO-BE.ecomp.idns.cip.com
643     gFeFqdn: AIO-FE.ecomp.idns.cip.com
644     beVip: 0.0.0.0
645     feVip: 0.0.0.0
646     beResolveAttempts: 3
647     feResolveAttempts: 3
648     enabled: false
649     interval: 60
650     changePriorityUser: ecompasdc
651     changePriorityPassword: ecompasdc123
652     publishNetworkUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/update_network?user=root"
653     publishNetworkBody: '{"note":"publish network"}'
654     groups:
655       beSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-BE.ecomp.idns.com?user=root",
656                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"}'}
657       feSet: { changePriorityUrl: "http://xxx.com/crt/CipDomain.ECOMP-ASDC-DEVST/config/sites/AIO-FE.ecomp.idns.com?user=root",
658                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"}'}
659
660 applicationL1Cache:
661     datatypes:
662         enabled: true
663         firstRunDelay: 10
664         pollIntervalInSec: 60
665
666 applicationL2Cache:
667     enabled: true
668     catalogL1Cache:
669         enabled: true
670         resourcesSizeInCache: 300
671         servicesSizeInCache: 200
672         productsSizeInCache: 100
673     queue:
674         syncIntervalInSecondes: 43200
675         waitOnShutDownInMinutes: 10
676         numberOfCacheWorkers: 4
677
678 toscaValidators:
679     stringMaxLength: 2500
680
681 disableAudit: false
682
683 vfModuleProperties:
684     min_vf_module_instances:
685         forBaseModule: 1
686         forNonBaseModule: 0
687     max_vf_module_instances:
688         forBaseModule: 1
689         forNonBaseModule:
690     initial_count:
691         forBaseModule: 1
692         forNonBaseModule: 0
693     vf_module_type:
694         forBaseModule: Base
695         forNonBaseModule: Expansion
696
697 genericAssetNodeTypes:
698   VFC: org.openecomp.resource.abstract.nodes.VFC
699   CVFC: org.openecomp.resource.abstract.nodes.VFC
700   VF : org.openecomp.resource.abstract.nodes.VF
701   CR : org.openecomp.resource.abstract.nodes.CR
702   PNF: org.openecomp.resource.abstract.nodes.PNF
703   Service: org.openecomp.resource.abstract.nodes.service
704
705 workloadContext: Production
706 environmentContext:
707     defaultValue: General_Revenue-Bearing
708     validValues:
709        - Critical_Revenue-Bearing
710        - Vital_Revenue-Bearing
711        - Essential_Revenue-Bearing
712        - Important_Revenue-Bearing
713        - Needed_Revenue-Bearing
714        - Useful_Revenue-Bearing
715        - General_Revenue-Bearing
716        - Critical_Non-Revenue
717        - Vital_Non-Revenue
718        - Essential_Non-Revenue
719        - Important_Non-Revenue
720        - Needed_Non-Revenue
721        - Useful_Non-Revenue
722        - General_Non-Revenue
723
724 dmaapConsumerConfiguration:
725     active: true
726     hosts: olsd004.wnsnet.ws.com:3905
727     consumerGroup: asdc
728     consumerId: mama #mama - in Order To Consume Remove This String And Replace It With -> mama
729     timeoutMs: 15000
730     limit: 1
731     pollingInterval: 2
732     topic: com.sdc.23911-SDCforTestDev-v001
733     latitude: 32.109333
734     longitude: 34.855499
735     version: 1.0
736     serviceName: dmaap-v1.dev.dmaap.dt.saat.acsi.com/events
737     environment: TEST
738     partner: BOT_R
739     routeOffer: MR1
740     protocol: https
741     contenttype: application/json
742     dme2TraceOn: true
743     aftEnvironment: AFTUAT
744     aftDme2ConnectionTimeoutMs: 15000
745     aftDme2RoundtripTimeoutMs: 240000
746     aftDme2ReadTimeoutMs: 50000
747     dme2preferredRouterFilePath: DME2preferredRouter.txt
748     timeLimitForNotificationHandleMs: 120000
749     credential:
750         username: m09875@sdc.com
751         password: mockhmXYcznAljMSisdy8zgcag==
752
753
754         
755 dmeConfiguration:
756     dme2Search: DME2SEARCH
757     dme2Resolve: DME2RESOLVE
758
759
760 excludedPolicyTypesMapping:
761    # VF:
762     #  - a.b.c
763     #  - c.d.e
764     #CR:
765     #  - x.y.z
766
767 excludedGroupTypesMapping:
768     CR:
769        - org.openecomp.groups.VfModule
770        - org.openecomp.groups.heat.HeatStack
771        - tosca.groups.Root
772     PNF:
773        - org.openecomp.groups.VfModule
774        - org.openecomp.groups.heat.HeatStack
775        - tosca.groups.Root
776     VF:
777        - org.openecomp.groups.VfModule
778        - org.openecomp.groups.heat.HeatStack
779        - tosca.groups.Root
780     Service:
781        - org.openecomp.groups.VfModule
782        - org.openecomp.groups.heat.HeatStack
783        - tosca.groups.Root
784
785 healthStatusExclude:
786    - DE
787    - ES
788    - DMAAP