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