a8ebf0656be6fd55d728d4df0a57f649a93faebe
[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: 11.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 uebHealthCheckReconnectIntervalInSeconds: 15
43 uebHealthCheckReadTimeout: 4
44
45 # Protocols
46 protocols:
47    - http
48    - https
49
50 # Default imports
51 defaultImports:
52    - nodes:
53         file: nodes.yml
54    - datatypes:
55         file: data.yml
56    - capabilities:
57         file: capabilities.yml
58    - relationships:
59         file: relationships.yml
60    - groups:
61         file: groups.yml
62    - policies:
63         file: policies.yml
64    - annotations:
65         file: annotations.yml
66
67 # Global CSAR Import Files
68 globalCsarImports:
69   - annotations.yml
70   - artifacts.yml
71   - capabilities.yml
72   - data.yml
73   - groups.yml
74   - interfaces.yml
75   - nodes.yml
76   - policies.yml
77   - relationships.yml
78
79 # Users
80 users:
81     tom: passwd
82     bob: passwd
83
84 # access restriction
85 authCookie:
86   securityKey: "sdcaccessrestrictionsecureykey"
87   maxSessionTimeOut: 86400000
88   sessionIdleTimeOut: 3600000
89   cookieName: "AuthenticationCookie"
90   path: /
91   domain: ""
92   isHttpOnly: true
93   # redirect variable name from portal.properties file
94   redirectURL: ""
95   excludedUrls: [<%= node['access_restriction']['excluded_urls'] %>]
96   onboardingExcludedUrls: [<%= node['access_restriction']['excluded_urls_onboarding'] %>]
97
98
99
100 cassandraConfig:
101     cassandraHosts: [<%= @cassandra_ip %>]
102     cassandraPort: <%= @cassandra_port %>
103     localDataCenter: <%= @DC_NAME %>
104     reconnectTimeout : 30000
105     socketReadTimeout: <%= @socket_read_timeout %>
106     socketConnectTimeout: <%= @socket_connect_timeout %>
107     authenticate: true
108     username: <%= @cassandra_usr %>
109     password: <%= @cassandra_pwd %>
110     ssl: <%= @cassandra_ssl_enabled %>
111     truststorePath : /var/lib/jetty/etc/truststore
112     truststorePassword : <%= @cassandra_truststore_password %>
113     keySpaces:
114         - { name: dox,           replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @REP_STRING %>']}
115         - { name: sdcaudit,      replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @REP_STRING %>']}
116         - { name: sdcartifact,   replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @REP_STRING %>']}
117         - { name: sdccomponent,  replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @REP_STRING %>']}
118         - { name: sdcrepository, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @REP_STRING %>']}
119
120
121 licenseTypes:
122    - User
123    - Installation
124    - CPU
125
126 #Deployment artifacts placeHolder
127 resourceTypes: &allResourceTypes
128   - VFC
129   - CP
130   - VL
131   - VF
132   - CR
133   - VFCMT
134   - Abstract
135   - CVFC
136
137 artifacts:
138   - type: CONTROLLER_BLUEPRINT_ARCHIVE
139     categories:
140       - DEPLOYMENT
141     componentTypes:
142       - SERVICE
143       - RESOURCE
144     resourceTypes:
145       - VF
146       - PNF
147     acceptedTypes:
148       - zip
149   - type: YANG_XML
150     categories:
151       - DEPLOYMENT
152       - INFORMATIONAL
153     componentTypes:
154       - SERVICE
155       - RESOURCE
156     resourceTypes: *allResourceTypes
157     acceptedTypes:
158       - xml
159   - type: VNF_CATALOG
160     categories:
161       - DEPLOYMENT
162     componentTypes:
163       - SERVICE
164     resourceTypes:
165     acceptedTypes:
166       - xml
167   - type: MODEL_INVENTORY_PROFILE
168     categories:
169       - DEPLOYMENT
170     componentTypes:
171       - SERVICE
172     resourceTypes:
173     acceptedTypes:
174       - xml
175   - type: MODEL_QUERY_SPEC
176     categories:
177       - DEPLOYMENT
178     componentTypes:
179       - SERVICE
180     resourceTypes:
181     acceptedTypes:
182       - xml
183   - type: UCPE_LAYER_2_CONFIGURATION
184     categories:
185       - DEPLOYMENT
186     componentTypes:
187       - SERVICE
188     resourceTypes:
189     acceptedTypes:
190       - xml
191   #AAI Artifacts
192   - type: AAI_SERVICE_MODEL
193     categories:
194       - DEPLOYMENT
195     componentTypes:
196       - SERVICE
197     resourceTypes:
198     acceptedTypes:
199       - xml
200   - type: AAI_VF_MODULE_MODEL
201     categories:
202       - DEPLOYMENT
203     componentTypes:
204       - SERVICE
205     resourceTypes:
206     acceptedTypes:
207       - xml
208   - type: AAI_VF_INSTANCE_MODEL
209     categories:
210       - DEPLOYMENT
211     componentTypes:
212       - SERVICE
213     resourceTypes:
214     acceptedTypes:
215       - xml
216   #Plan
217   - type: PLAN
218     categories:
219       - DEPLOYMENT
220     componentTypes:
221       - SERVICE
222       - RESOURCE
223       - RESOURCE_INSTANCE
224     resourceTypes:
225       - VF
226       - VFC
227     acceptedTypes:
228       - xml
229   - type: WORKFLOW
230     categories:
231       - DEPLOYMENT
232     componentTypes:
233       - SERVICE
234       - RESOURCE
235     resourceTypes:
236       - VFC
237       - CP
238       - VL
239       - VF
240       - CR
241       - VFCMT
242       - Abstract
243       - CVFC
244       - PNF
245     acceptedTypes:
246   - type: HEAT
247     categories:
248       - DEPLOYMENT
249       - INFORMATIONAL
250     componentTypes:
251       - RESOURCE
252     resourceTypes: *allResourceTypes
253     acceptedTypes:
254       - yaml
255       - yml
256   - type: HEAT_VOL
257     categories:
258       - DEPLOYMENT
259     componentTypes:
260       - RESOURCE
261     resourceTypes: *allResourceTypes
262     acceptedTypes:
263       - yaml
264       - yml
265   - type: HEAT_NET
266     categories:
267       - DEPLOYMENT
268     componentTypes:
269       - RESOURCE
270     resourceTypes: *allResourceTypes
271     acceptedTypes:
272       - yaml
273       - yml
274   - type: HEAT_NESTED
275     categories:
276       - DEPLOYMENT
277     componentTypes:
278       - RESOURCE
279     resourceTypes: *allResourceTypes
280     acceptedTypes:
281       - yaml
282       - yml
283   - type: HEAT_ARTIFACT
284     categories:
285       - DEPLOYMENT
286     componentTypes:
287       - RESOURCE
288     resourceTypes: *allResourceTypes
289     acceptedTypes:
290   - type: CLOUD_TECHNOLOGY_SPECIFIC_ARTIFACT
291     categories:
292       - DEPLOYMENT
293     componentTypes:
294       - RESOURCE
295     resourceTypes: *allResourceTypes
296     acceptedTypes:
297       - zip
298       - tgz
299       - csar
300   - type: VNF_CATALOG
301     categories:
302       - DEPLOYMENT
303     componentTypes:
304       - RESOURCE
305     resourceTypes: *allResourceTypes
306     acceptedTypes:
307       - xml
308   - type: VF_LICENSE
309     categories:
310       - DEPLOYMENT
311     componentTypes:
312       - RESOURCE
313     resourceTypes: *allResourceTypes
314     acceptedTypes:
315       - xml
316   - type: VENDOR_LICENSE
317     categories:
318       - DEPLOYMENT
319     componentTypes:
320       - RESOURCE
321     resourceTypes: *allResourceTypes
322     acceptedTypes:
323       - xml
324   - type: MODEL_INVENTORY_PROFILE
325     categories:
326       - DEPLOYMENT
327     componentTypes:
328       - RESOURCE
329     resourceTypes: *allResourceTypes
330     acceptedTypes:
331       - xml
332   - type: MODEL_QUERY_SPEC
333     categories:
334       - DEPLOYMENT
335     componentTypes:
336       - RESOURCE
337     resourceTypes: *allResourceTypes
338     acceptedTypes:
339       - xml
340   - type: LIFECYCLE_OPERATIONS
341     categories:
342       - DEPLOYMENT
343     componentTypes:
344       - RESOURCE
345     resourceTypes:
346       - VF
347       - VFC
348     acceptedTypes:
349       - yaml
350       - yml
351   - type: VES_EVENTS
352     categories:
353       - DEPLOYMENT
354     componentTypes:
355       - RESOURCE
356       - RESOURCE_INSTANCE
357     resourceTypes:
358       - VFC
359       - CP
360       - VL
361       - VF
362       - CR
363       - VFCMT
364       - Abstract
365       - CVFC
366       - PNF
367     acceptedTypes:
368       - yaml
369       - yml
370   - type: PERFORMANCE_COUNTER
371     categories:
372       - DEPLOYMENT
373     componentTypes:
374       - RESOURCE
375       - RESOURCE_INSTANCE
376     resourceTypes: *allResourceTypes
377     acceptedTypes:
378       - csv
379   - type: APPC_CONFIG
380     categories:
381       - DEPLOYMENT
382     componentTypes:
383       - RESOURCE
384     resourceTypes:
385       - VF
386     acceptedTypes:
387   - type: DCAE_TOSCA
388     categories:
389       - DEPLOYMENT
390     componentTypes:
391       - RESOURCE
392     resourceTypes:
393       - VF
394       - VFCMT
395     acceptedTypes:
396       - yml
397       - yaml
398   - type: DCAE_JSON
399     categories:
400       - DEPLOYMENT
401     componentTypes:
402       - RESOURCE
403     resourceTypes:
404       - VF
405       - VFCMT
406     acceptedTypes:
407       - json
408   - type: DCAE_POLICY
409     categories:
410       - DEPLOYMENT
411     componentTypes:
412       - RESOURCE
413     resourceTypes:
414       - VF
415       - VFCMT
416     acceptedTypes:
417       - emf
418   - type: DCAE_DOC
419     categories:
420       - DEPLOYMENT
421     componentTypes:
422       - RESOURCE
423     resourceTypes:
424       - VF
425       - VFCMT
426     acceptedTypes:
427   - type: DCAE_EVENT
428     categories:
429       - DEPLOYMENT
430     componentTypes:
431       - RESOURCE
432     resourceTypes:
433       - VF
434       - VFCMT
435     acceptedTypes:
436   - type: AAI_VF_MODEL
437     categories:
438       - DEPLOYMENT
439     componentTypes:
440       - RESOURCE
441     resourceTypes:
442       - VF
443     acceptedTypes:
444       - xml
445   - type: AAI_VF_MODULE_MODEL
446     categories:
447       - DEPLOYMENT
448     componentTypes:
449       - RESOURCE
450     resourceTypes:
451       - VF
452     acceptedTypes:
453       - xml
454   - type: OTHER
455     categories:
456       - DEPLOYMENT
457       - INFORMATIONAL
458     componentTypes:
459       - RESOURCE
460     resourceTypes:
461       - VFC
462       - CVFC
463       - CP
464       - VL
465       - VF
466       - VFCMT
467       - Abstract
468       - PNF
469     acceptedTypes:
470   - type: SNMP_POLL
471     categories:
472       - DEPLOYMENT
473       - INFORMATIONAL
474     componentTypes:
475       - RESOURCE
476       - RESOURCE_INSTANCE
477     resourceTypes: *allResourceTypes
478     acceptedTypes:
479   - type: SNMP_TRAP
480     categories:
481       - DEPLOYMENT
482       - INFORMATIONAL
483     componentTypes:
484       - RESOURCE
485       - RESOURCE_INSTANCE
486     resourceTypes: *allResourceTypes
487     acceptedTypes:
488   - type: PM_DICTIONARY
489     categories:
490       - DEPLOYMENT
491     componentTypes:
492       - RESOURCE
493     resourceTypes:
494       - VF
495       - PNF
496     acceptedTypes:
497       - yaml
498       - yml
499   - type: YANG_MODULE
500     categories:
501       - DEPLOYMENT
502     componentTypes:
503       - RESOURCE
504     resourceTypes:
505       - VF
506       - PNF
507     acceptedTypes:
508       - yang
509   - type: ANSIBLE_PLAYBOOK
510     categories:
511       - DEPLOYMENT
512     componentTypes:
513       - RESOURCE
514     resourceTypes:
515       - VF
516       - PNF
517     acceptedTypes:
518       - yaml
519       - yml
520   - type: ONBOARDED_PACKAGE
521     categories:
522       - DEPLOYMENT
523     componentTypes:
524       - RESOURCE
525     resourceTypes:
526       - VF
527       - PNF
528     acceptedTypes:
529       - csar
530       - zip
531   - type: HEAT_ENV
532     categories:
533       - DEPLOYMENT
534     componentTypes:
535       - RESOURCE_INSTANCE
536     resourceTypes:
537     acceptedTypes:
538       - env
539   - type: VF_MODULES_METADATA
540     categories:
541       - DEPLOYMENT
542     componentTypes:
543       - RESOURCE_INSTANCE
544     resourceTypes:
545     acceptedTypes:
546       - json
547   - type: DCAE_INVENTORY_TOSCA
548     categories:
549       - DEPLOYMENT
550     componentTypes:
551       - RESOURCE_INSTANCE
552     resourceTypes:
553     acceptedTypes:
554       - yml
555       - yaml
556   - type: DCAE_INVENTORY_JSON
557     categories:
558       - DEPLOYMENT
559     componentTypes:
560       - RESOURCE_INSTANCE
561     resourceTypes:
562     acceptedTypes:
563       - json
564   - type: DCAE_INVENTORY_POLICY
565     categories:
566       - DEPLOYMENT
567     componentTypes:
568       - RESOURCE_INSTANCE
569     resourceTypes:
570     acceptedTypes:
571       - emf
572   - type: DCAE_INVENTORY_DOC
573     categories:
574       - DEPLOYMENT
575     componentTypes:
576       - RESOURCE_INSTANCE
577     resourceTypes:
578     acceptedTypes:
579   - type: DCAE_INVENTORY_BLUEPRINT
580     categories:
581       - DEPLOYMENT
582     componentTypes:
583       - RESOURCE_INSTANCE
584     resourceTypes:
585     acceptedTypes:
586   - type: DCAE_INVENTORY_EVENT
587     categories:
588       - DEPLOYMENT
589     componentTypes:
590       - RESOURCE_INSTANCE
591     resourceTypes:
592     acceptedTypes:
593   - type: CHEF
594     categories:
595       - INFORMATIONAL
596     componentTypes:
597       - RESOURCE
598     resourceTypes: *allResourceTypes
599     acceptedTypes:
600   - type: PUPPET
601     categories:
602       - INFORMATIONAL
603     componentTypes:
604       - RESOURCE
605     resourceTypes: *allResourceTypes
606     acceptedTypes:
607   - type: SHELL
608     categories:
609       - INFORMATIONAL
610     componentTypes:
611       - RESOURCE
612     resourceTypes: *allResourceTypes
613     acceptedTypes:
614   - type: YANG
615     categories:
616       - INFORMATIONAL
617     componentTypes:
618       - RESOURCE
619     resourceTypes: *allResourceTypes
620     acceptedTypes:
621   - type: BPEL
622     categories:
623       - INFORMATIONAL
624     componentTypes:
625       - RESOURCE
626     resourceTypes: *allResourceTypes
627     acceptedTypes:
628   - type: DG_XML
629     categories:
630       - INFORMATIONAL
631     componentTypes:
632       - RESOURCE
633     resourceTypes: *allResourceTypes
634     acceptedTypes:
635   - type: MURANO_PKG
636     categories:
637       - INFORMATIONAL
638     componentTypes:
639       - RESOURCE
640     resourceTypes: *allResourceTypes
641     acceptedTypes:
642   - type: PNF_SW_INFORMATION
643     categories:
644       - INFORMATIONAL
645     componentTypes:
646       - RESOURCE
647     resourceTypes:
648       - PNF
649     acceptedTypes:
650       - yaml
651       - yml
652   - type: GUIDE
653     categories:
654       - INFORMATIONAL
655     componentTypes:
656       - RESOURCE
657     resourceTypes:
658       - VF
659       - VFC
660       - CVFC
661       - PNF
662     acceptedTypes:
663       - yaml
664       - yml
665   - type: FLOW
666     categories:
667       - DEPLOYMENT
668     componentTypes:
669       - SERVICE
670     resourceTypes: *allResourceTypes
671     acceptedTypes:
672   - type: SHELL_SCRIPT
673     categories:
674       - DEPLOYMENT
675     componentTypes:
676       - SERVICE
677       - SERVICE_INSTANCE
678       - RESOURCE
679       - RESOURCE_INSTANCE
680     resourceTypes: *allResourceTypes
681     acceptedTypes:
682       - sh
683   - type: TOSCA_CSAR
684     categories:
685       - TOSCA
686     componentTypes:
687     resourceTypes:
688     acceptedTypes:
689       - csar
690   - type: TOSCA_TEMPLATE
691     categories:
692       - TOSCA
693     componentTypes:
694     resourceTypes:
695     acceptedTypes:
696       - yml
697       - yaml
698   - type: NETWORK_CALL_FLOW
699     categories:
700     componentTypes:
701     resourceTypes:
702     acceptedTypes:
703   - type: ICON
704     categories:
705     componentTypes:
706     resourceTypes:
707     acceptedTypes:
708
709 deploymentResourceArtifacts:
710
711 deploymentResourceInstanceArtifacts:
712   heatEnv:
713       displayName: "HEAT ENV"
714       type: HEAT_ENV
715       description: "Auto-generated HEAT Environment deployment artifact"
716       fileExtension: "env"
717   VfHeatEnv:
718       displayName: "VF HEAT ENV"
719       type: HEAT_ENV
720       description: "VF Auto-generated HEAT Environment deployment artifact"
721       fileExtension: "env"
722
723 #tosca artifacts placeholders
724 toscaArtifacts:
725   assetToscaTemplate:
726       artifactName: -template.yml
727       displayName: Tosca Template
728       type: TOSCA_TEMPLATE
729       description: TOSCA representation of the asset
730   assetToscaCsar:
731       artifactName: -csar.csar
732       displayName: Tosca Model
733       type: TOSCA_CSAR
734       description: TOSCA definition package of the asset
735
736 #Informational artifacts placeHolder
737 excludeResourceCategory:
738   - Generic
739 excludeResourceType:
740   - PNF
741   - CR
742 informationalResourceArtifacts:
743   features:
744       displayName: Features
745       type: OTHER
746   capacity:
747       displayName: Capacity
748       type: OTHER
749   vendorTestResult:
750       displayName: Vendor Test Result
751       type: OTHER
752   testScripts:
753       displayName: Test Scripts
754       type: OTHER
755   CloudQuestionnaire:
756       displayName: Cloud Questionnaire (completed)
757       type: OTHER
758   HEATTemplateFromVendor:
759       displayName: HEAT Template from Vendor
760       type: HEAT
761   resourceSecurityTemplate:
762       displayName: Resource Security Template
763       type: OTHER
764
765 excludeServiceCategory:
766
767 informationalServiceArtifacts:
768   serviceArtifactPlan:
769       displayName: Service Artifact Plan
770       type: OTHER
771   summaryOfImpactsToECOMPElements:
772       displayName: Summary of impacts to ECOMP elements,OSSs, BSSs
773       type: OTHER
774   controlLoopFunctions:
775       displayName: Control Loop Functions
776       type: OTHER
777   dimensioningInfo:
778       displayName: Dimensioning Info
779       type: OTHER
780   affinityRules:
781       displayName: Affinity Rules
782       type: OTHER
783   operationalPolicies:
784       displayName: Operational Policies
785       type: OTHER
786   serviceSpecificPolicies:
787       displayName: Service-specific Policies
788       type: OTHER
789   engineeringRules:
790       displayName: Engineering Rules (ERD)
791       type: OTHER
792   distributionInstructions:
793       displayName: Distribution Instructions
794       type: OTHER
795   certificationTestResults:
796       displayName: TD Certification Test Results
797       type: OTHER
798   deploymentVotingRecord:
799       displayName: Deployment Voting Record
800       type: OTHER
801   serviceQuestionnaire:
802       displayName: Service Questionnaire
803       type: OTHER
804   serviceSecurityTemplate:
805       displayName: Service Security Template
806       type: OTHER
807
808 serviceApiArtifacts:
809   configuration:
810       displayName: Configuration
811       type: OTHER
812   instantiation:
813       displayName: Instantiation
814       type: OTHER
815   monitoring:
816       displayName: Monitoring
817       type: OTHER
818   reporting:
819       displayName: Reporting
820       type: OTHER
821   logging:
822       displayName: Logging
823       type: OTHER
824   testing:
825       displayName: Testing
826       type: OTHER
827
828
829 additionalInformationMaxNumberOfKeys: 50
830
831 systemMonitoring:
832     enabled: false
833     isProxy: false
834     probeIntervalInSeconds: 15
835 heatArtifactDeploymentTimeout:
836   defaultMinutes: 30
837   minMinutes: 1
838   maxMinutes: 120
839
840 unLoggedUrls:
841    - /sdc2/rest/monitoring
842    - /sdc2/rest/healthCheck
843
844 cleanComponentsConfiguration:
845     cleanIntervalInMinutes: 1440
846     componentsToClean:
847        - Resource
848        - Service
849
850 artifactsIndex: resources
851
852 heatEnvArtifactHeader: ""
853 heatEnvArtifactFooter: ""
854
855 onboarding:
856     host: <%= node['ONBOARDING_BE_VIP'] %>
857     <% if node[:disableHttp] -%>
858     protocol: https
859     port: <%= node['ONBOARDING_BE'][:https_port] %>
860     <% else %>
861     protocol: http
862     port: <%= node['ONBOARDING_BE'][:http_port] %>
863     <% end -%>
864     downloadCsarUri: "/onboarding-api/v1.0/vendor-software-products/packages"
865     healthCheckUri: "/onboarding-api/v1.0/healthcheck"
866
867 dcae:
868     host: <%= @dcae_be_vip %>
869     <% if node[:disableHttp] -%>
870     protocol: https
871     port: <%= node['DCAE']['BE'][:https_port] %>
872     <% else %>
873     protocol: http
874     port: <%= node['DCAE']['BE'][:http_port] %>
875     <% end -%>
876     healthCheckUri: "/dcae/healthCheck"
877
878 # #GSS IDNS
879 switchoverDetector:
880     gBeFqdn:
881     gFeFqdn:
882     beVip: 1.2.3.4
883     feVip: 1.2.3.4
884     beResolveAttempts: 3
885     feResolveAttempts: 3
886     enabled: false
887     interval: 60
888     changePriorityUser: ecompasdc
889     changePriorityPassword: ecompasdc123
890     publishNetworkUrl:
891     publishNetworkBody: '{"note":"comment"}'
892     groups:
893       beSet: { changePriorityUrl: "", changePriorityBody: '{"name":"","uri":"","no_ad_redirection":false,"v4groups":{"failover_groups":["","","failover_policy":["FAILALL"]},"comment":"","intended_app_proto":"DNS"}'}
894       feSet: { changePriorityUrl: "", changePriorityBody: '{"name":"","uri":"","no_ad_redirection":false,"v4groups":{"failover_groups":["",""],"failover_policy":["FAILALL"]},"comment":"","intended_app_proto":"DNS"}'}
895
896 applicationL1Cache:
897     datatypes:
898         enabled: true
899         firstRunDelay: 10
900         pollIntervalInSec: 60
901
902 applicationL2Cache:
903     enabled: false
904     catalogL1Cache:
905         enabled: false
906         resourcesSizeInCache: 300
907         servicesSizeInCache: 200
908         productsSizeInCache: 100
909     queue:
910         syncIntervalInSecondes: 43200
911         waitOnShutDownInMinutes: 10
912         numberOfCacheWorkers: 4
913
914 toscaValidators:
915     stringMaxLength: 2500
916
917 disableAudit: false
918
919 consumerBusinessLogic: true
920
921 vfModuleProperties:
922     min_vf_module_instances:
923         forBaseModule: 1
924         forNonBaseModule: 0
925     max_vf_module_instances:
926         forBaseModule: 1
927         forNonBaseModule:
928     initial_count:
929         forBaseModule: 1
930         forNonBaseModule: 0
931     vf_module_type:
932         forBaseModule: Base
933         forNonBaseModule: Expansion
934
935 genericAssetNodeTypes:
936   VFC: org.openecomp.resource.abstract.nodes.VFC
937   CVFC: org.openecomp.resource.abstract.nodes.VFC
938   VF : org.openecomp.resource.abstract.nodes.VF
939   CR : org.openecomp.resource.abstract.nodes.CR
940   PNF: org.openecomp.resource.abstract.nodes.PNF
941   Service: org.openecomp.resource.abstract.nodes.service
942
943 workloadContext: Production
944
945 environmentContext:
946     defaultValue: General_Revenue-Bearing
947     validValues:
948        - Critical_Revenue-Bearing
949        - Vital_Revenue-Bearing
950        - Essential_Revenue-Bearing
951        - Important_Revenue-Bearing
952        - Needed_Revenue-Bearing
953        - Useful_Revenue-Bearing
954        - General_Revenue-Bearing
955        - Critical_Non-Revenue
956        - Vital_Non-Revenue
957        - Essential_Non-Revenue
958        - Important_Non-Revenue
959        - Needed_Non-Revenue
960        - Useful_Non-Revenue
961        - General_Non-Revenue
962
963 gabConfig:
964   - artifactType: 'VES_EVENTS'
965     pathsAndNamesDefinitions:
966       -
967         friendlyName: "Action"
968         path: "event.action[2]"
969         searchable: true
970       -
971         friendlyName: "Comment"
972         path: "event.comment"
973         searchable: true
974       -
975         friendlyName: "Alarm Additional Information"
976         path: "event.structure.faultFields.structure.alarmAdditionalInformation.comment"
977         searchable: true
978   - artifactType: 'PM_DICTIONARY'
979     pathsAndNamesDefinitions:
980       -
981         friendlyName: "measType"
982         path: "pmMetaData.pmFields.measType"
983         searchable: true
984       -
985         friendlyName: "measDescription"
986         path: "pmMetaData.pmFields.measDescription"
987         searchable: true
988       -
989         friendlyName: "measCondition"
990         path: "pmMetaData.pmFields.measCondition"
991         searchable: false
992       -
993         friendlyName: "measResultUnits"
994         path: "pmMetaData.pmFields.measResultUnits"
995         searchable: false
996       -
997         friendlyName: "measResultRange"
998         path: "pmMetaData.pmFields.measResultRange"
999         searchable: false
1000       -
1001         friendlyName: "measObjClass"
1002         path: "pmMetaData.pmFields.measObjClass"
1003         searchable: true
1004       -
1005         friendlyName: "measCollectionMethod"
1006         path: "pmMetaData.pmFields.measCollectionMethod"
1007         searchable: false
1008       -
1009         friendlyName: "measInfoId"
1010         path: "pmMetaData.pmFields.measInfoId"
1011         searchable: true
1012       -
1013         friendlyName: "iMeasInfoId"
1014         path: "pmMetaData.pmFields.iMeasInfoId"
1015         searchable: false
1016
1017 dmaapConsumerConfiguration:
1018     active: <%= @dmaap_active %>
1019     hosts: localhost:3905
1020     consumerGroup: sdc
1021     consumerId: mama
1022     timeoutMs: 15000
1023     limit: 1
1024     pollingInterval: 2
1025     topic: topic
1026     latitude: 32.109333
1027     longitude: 34.855499
1028     version: 1.0
1029     serviceName: localhost/events
1030     environment: TEST
1031     partner: BOT_R
1032     routeOffer: MR1
1033     protocol: https
1034     contenttype: application/json
1035     dme2TraceOn: true
1036     aftEnvironment: AFTUAT
1037     aftDme2ConnectionTimeoutMs: 15000
1038     aftDme2RoundtripTimeoutMs: 240000
1039     aftDme2ReadTimeoutMs: 50000
1040     dme2preferredRouterFilePath: DME2preferredRouter.txt
1041     timeLimitForNotificationHandleMs: 120000
1042     credential:
1043         username: user
1044         password:
1045     aftDme2SslEnable: true
1046     aftDme2ClientKeystore: /var/lib/jetty/etc/truststore
1047     aftDme2ClientKeystorePassword: ""
1048     aftDme2ClientSslCertAlias: certman
1049
1050 dmaapProducerConfiguration:
1051     active: true
1052     hosts: <%= node['DMAAP']['producer']['host']%>
1053     consumerGroup: sdc-<%= node.chef_environment %>-<%= node['DMAAP']['random_id'] %>
1054     consumerId: sdc-<%= node.chef_environment %>1-<%= node['DMAAP']['random_id'] %>
1055     timeoutMs: 15000
1056     limit: 1
1057     pollingInterval: 2
1058     topic: <%= node['DMAAP']['producer']['topic'] %>
1059     latitude: 32.109333
1060     longitude: 34.855499
1061     version: 1.0
1062     serviceName: <%= node['DMAAP']['producer']['serviceName'] %>
1063     environment: <%= node['DMAAP']['producer']['environment'] %>
1064     partner: BOT_R
1065     routeOffer: MR1
1066     protocol: <%= node['http_protocol'] %>
1067     contenttype: application/json
1068     dme2TraceOn: true
1069     aftEnvironment: <%= node['DMAAP']['producer']['aftEnvironment']%>
1070     aftDme2ConnectionTimeoutMs: 15000
1071     aftDme2RoundtripTimeoutMs: 240000
1072     aftDme2ReadTimeoutMs: 50000
1073     dme2preferredRouterFilePath: <%= node['DMAAP']['producer']['dme2preferredRouterFilePath'] %>
1074     timeLimitForNotificationHandleMs: 120000
1075     credential:
1076         username: <%= node['DMAAP']['producer']['username'] %>
1077         password: <%= node['DMAAP']['producer']['password'] %>
1078     aftDme2SslEnable: true
1079     aftDme2ClientKeystore: /var/lib/jetty/etc/truststore
1080     aftDme2ClientKeystorePassword: <%= node['jetty']['dmaap_truststore_pwd'] %>
1081     aftDme2ClientSslCertAlias: certman
1082
1083
1084 # ToDo: AF - had to remove due to configuration laod class failure
1085 #dmeConfiguration:
1086 #    lookupUriFormat: "http://DME2RESOLVE/service=%s/version=1.0.0/envContext=%s/routeOffer=DEFAULT"
1087 #    dme2Search: DME2SEARCH
1088 #    dme2Resolve: DME2RESOLVE
1089
1090 excludedPolicyTypesMapping:
1091    # VF:
1092     #  - a.b.c
1093     #  - c.d.e
1094     #CR:
1095     #  - x.y.z
1096
1097 excludedGroupTypesMapping:
1098     CR:
1099        - org.openecomp.groups.VfModule
1100        - org.openecomp.groups.heat.HeatStack
1101        - org.openecomp.groups.Group
1102        - tosca.groups.Root
1103     PNF:
1104        - org.openecomp.groups.VfModule
1105        - org.openecomp.groups.heat.HeatStack
1106        - org.openecomp.groups.Group
1107        - tosca.groups.Root
1108     VF:
1109        - org.openecomp.groups.VfModule
1110        - org.openecomp.groups.heat.HeatStack
1111        - org.openecomp.groups.Group
1112        - tosca.groups.Root
1113     Service:
1114        - org.openecomp.groups.VfModule
1115        - org.openecomp.groups.heat.HeatStack
1116        - org.openecomp.groups.Group
1117        - tosca.groups.Root
1118
1119 healthStatusExclude:
1120    - DE
1121    - DMAAP
1122    - DMAAP_PRODUCER
1123    - ON_BOARDING
1124    - DCAE
1125    - PORTAL
1126    - External API
1127
1128 #Auto Healing
1129 enableAutoHealing: false
1130 appVersion: <%= @app_version %>
1131
1132 artifactGeneratorConfig: Artifact-Generator.properties
1133 resourcesForUpgrade:
1134  8.0:
1135   - org.openecomp.resource.cp.extCP
1136   - tosca.nodes.network.Network
1137   - tosca.nodes.network.Port
1138   - org.openecomp.resource.cp.nodes.network.SubInterface
1139 skipUpgradeFailedVfs: true
1140 skipUpgradeVSPs: true
1141 autoHealingOwner: jh0003
1142 supportAllottedResourcesAndProxy: true
1143 deleteLockTimeoutInSeconds: 60
1144 maxDeleteComponents: 10
1145
1146 # Cadi filter (access restriction) Parameters
1147 aafNamespace:  <%= node['aafNamespace'] %>
1148 aafAuthNeeded:  <%= node['access_restriction']['aafAuthNeeded'] %>
1149
1150 cadiFilterParams:
1151     AFT_LATITUDE:  "32.780140"
1152     AFT_LONGITUDE: "-96.800451"
1153     hostname: <%= node['BE_VIP'] %>
1154     aaf_id: <%= node['access_restriction']['aaf_id'] %>
1155     aaf_env: <%= node['access_restriction']['aaf_env'] %>
1156     aaf_url: <%= node['access_restriction']['aaf_url'] %>
1157     csp_domain: <%= node['access_restriction']['csp_domain'] %>
1158     cadi_keyfile: <%= node['access_restriction']['cadi_keyfile'] %>
1159     aaf_password: <%= node['access_restriction']['aaf_password'] %>
1160     cadi_loglevel: <%= node['access_restriction']['cadi_loglevel'] %>
1161     AFT_ENVIRONMENT: <%= node['access_restriction']['AFT_ENVIRONMENT'] %>
1162     cadiX509Issuers: <%= node['access_restriction']['cadiX509Issuers'] %>
1163     cadi_truststore: <%= node['access_restriction']['cadi_truststore'] %>
1164     cadi_truststore_password: <%= node['access_restriction']['cadi_truststore_password'] %>
1165
1166 # This configuration entry lists all node type names prefix that shall be allowed on SDC.
1167 definedResourceNamespace:
1168   - org.openecomp.resource.