1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
|
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0
=============
Configuration
=============
.. contents::
:depth: 3
..
Global Configuration
====================
environment.json
----------------
::
{
# Environment name
"name": "xxx",
# Environment description
"description": "OpenSource-xxx",
"json_class": "Chef::Environment",
"chef_type": "environment",
"default_attributes": {
"disableHttp": false,
# IPs used for docker configuration
"CS_VIP": "yyy",
"BE_VIP": "yyy",
"ONBOARDING_BE_VIP": "yyy",
"FE_VIP": "yyy",
"ES_VIP": "yyy",
"KB_VIP": "yyy",
"DCAE_BE_VIP": "yyy",
"DCAE_FE_VIP": "yyy",
"interfaces": {
"application": "eth0",
"private": "eth1"
},
# Configuration parameters used in portal properties
"ECompP": {
"ecomp_rest_url": "http://portal.api.simpledemo.onap.org:8989/ONAPPORTAL/auxapi",
"ecomp_redirect_url": "http://portal.api.simpledemo.openecomp.org:8989/ECOMPPORTAL/login.htm",
"cipher_key": "AGLDdG4D04BKm2IxIWEr8o==",
"portal_user": "Ipwxi2oLvDxctMA1royaRw1W0jhucLx+grHzci3ePIA=",
"portal_pass": "j85yNhyIs7zKYbR1VlwEfNhS6b7Om4l0Gx5O8931sCI="
},
# Configuration parameters used by SDC to work with Dmaap
"UEB": {
"PublicKey": "iPIxkpAMI8qTcQj8",
"SecretKey": "Ehq3WyT4bkif4zwgEbvshGal",
"fqdn": ["10.0.11.1", "10.0.11.1"]
},
# IPs used for docker configuration
"Nodes": {
"CS": ["yyy"],
"BE": "yyy",
"ONBOARDING_BE": "yyy",
"FE": "yyy",
"ES": ["yyy"],
"KB": "yyy"
},
"Plugins": {
"DCAE": {
"dcae_discovery_url": "yyy",
"dcae_source_url": "yyy"
},
"WORKFLOW": {
"workflow_discovery_url": "yyy",
"workflow_source_url": "yyy"
}
},
"VnfRepo": {
"vnfRepoPort": "8702",
"vnfRepoHost": "10.0.14.1"
}
},
"override_attributes": {
# FE and BE listening ports
"FE": {
"http_port": "8181",
"https_port": "9443"
},
"BE": {
"http_port": "8080",
"https_port": "8443"
},
"ONBOARDING_BE": {
"http_port": "8081",
"https_port": "8445"
},
# Elasticsearch configuration
"elasticsearch": {
"cluster_name": "SDC-ES-",
"ES_path_home": "/usr/share/elasticsearch",
"ES_path_data": "/usr/share/elasticsearch/data",
"num_of_replicas": "0",
"num_of_shards": "1"
},
# Cassandra configuration
"cassandra": {
"concurrent_reads": "32",
"num_tokens": "256",
"data_dir": "/var/lib/cassandra/data",
"hinted_handoff_enabled": "true",
"cassandra_user": "asdc_user",
"cassandra_password": "Aa1234%^!",
"concurrent_writes": "32",
"cluster_name": "SDC-CS-",
"datacenter_name": "SDC-CS-",
"multithreaded_compaction": "false",
"cache_dir": "/var/lib/cassandra/saved_caches",
"log_file": "/var/lib/cassandra/log/system.log",
"phi_convict_threshold": "8",
"commitlog_dir": "/var/lib/cassandra/commitlog",
"socket_read_timeout": "20000",
"socket_connect_timeout": "20000",
"titan_connection_timeout": "10000"
}
}
}
Backend Configurations
======================
Catalog Configurations
----------------------
BE-configuration.yaml
**********************
::
# Request headers for identification of the user that made the request
identificationHeaderFields:
- HTTP_IV_USER
- HTTP_CSP_FIRSTNAME
- HTTP_CSP_LASTNAME
- HTTP_IV_REMOTE_ADDRESS
- HTTP_CSP_WSTYPE
# Catalog backend hostname
beFqdn: <%= @catalog_ip %>
# Catalog backend http port
beHttpPort: <%= @catalog_port %>
# Catalog backend http context
beContext: /sdc/rest/config/get
# Catalog backend protocol
beProtocol: http
# Catalog backend ssl port
beSslPort: <%= @ssl_port %>
# Catalog backend configuration version
version: 1.1.0
# Catalog backend configuration release date
released: 2012-11-30
# Catalog tosca current conformance version
toscaConformanceLevel: 5.0
# Catalog minimum tosca conformance version
minToscaConformanceLevel: 3.0
# Titan configuration file location
titanCfgFile: /var/lib/jetty/config/catalog-be/titan.properties
# Does titan holds the persistence data in memory
titanInMemoryGraph: false
# The timeout for titan to lock on an object in a transaction
titanLockTimeout: 1800
# The interval to try and reconnect to titan DB when it is down during SDC startup
titanReconnectIntervalInSeconds: 3
# The read timeout towards Titan DB when health check is invoked
titanHealthCheckReadTimeout: 1
# The interval to try and reconnect to Elasticsearch when it is down during SDC startup
esReconnectIntervalInSeconds: 3
# The interval to try and reconnect to UEB health check when it is down during SDC startup
uebHealthCheckReconnectIntervalInSeconds: 15
# The read timeout towards UEB when health check is invoked
uebHealthCheckReadTimeout: 4
# Protocols being used in SDC
protocols:
- http
- https
# Default imports
# Under each import there is the file the data will be imported from
defaultImports:
- nodes:
file: nodes.yml
- datatypes:
file: data.yml
- capabilities:
file: capabilities.yml
- relationships:
file: relationships.yml
- groups:
file: groups.yml
- policies:
file: policies.yml
- annotations:
file: annotations.yml
# Users
# Deprecated. Will be removed in future releases
users:
tom: passwd
bob: passwd
cassandraConfig:
# Cassandra hostname
cassandraHosts: <%= @cassandra_ip %>
# Cassandra local data center name
localDataCenter: <%= @DC_NAME %>
# The read timeout towards Cassandra when health check is invoked
reconnectTimeout : 30000
# The amount of time the Cassandra client will wait for a socket
socketReadTimeout: <%= @socket_read_timeout %>
# The amount of time the Cassandra client will wait for a response
socketConnectTimeout: <%= @socket_connect_timeout %>
# Should an authentication be used when accessing Cassandra
authenticate: true
# Username for accessing Cassandra
username: asdc_user
# Password for accessing Cassandra
password: {{cassandra_password}}
# Does an ssl should be used
ssl: false
# Location of .truststore file
truststorePath : /config/.truststore
# The .truststore file password
truststorePassword : Aa123456
# Keyspaces configuration for Cassandra
keySpaces:
- { name: dox, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @DC_NAME %>','<%= @rep_factor %>']}
- { name: sdcaudit, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @DC_NAME %>','<%= @rep_factor %>']}
- { name: sdcartifact, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @DC_NAME %>','<%= @rep_factor %>']}
- { name: sdccomponent, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @DC_NAME %>','<%= @rep_factor %>']}
- { name: sdcrepository, replicationStrategy: NetworkTopologyStrategy, replicationInfo: ['<%= @DC_NAME %>','<%= @rep_factor %>']}
# Application-specific settings of ES
elasticSearch:
# Mapping of index prefix to time-based frame. For example, if below is configured:
#
# - indexPrefix: auditing events
# creationPeriod: minute
#
# 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.
# Another object created on 2015-12-23 13:25:54, will enter "auditingevents-2015-12-23-13-25" index.
# If creationPeriod: month, both of the above will enter "auditingevents-2015-12" index.
#
# PLEASE NOTE: the timestamps are created in UTC/GMT timezone! This is needed so that timestamps will be correctly presented in Kibana.
#
# Legal values for creationPeriod - year, month, day, hour, minute, none (meaning no time-based behaviour).
#
# If no creationPeriod is configured for indexPrefix, default behavour is creationPeriod: month.
indicesTimeFrequency:
- indexPrefix: auditingevents
creationPeriod: month
- indexPrefix: monitoring_events
creationPeriod: month
# Artifact types placeholder
artifactTypes:
- CHEF
- PUPPET
- SHELL
- YANG
- YANG_XML
- HEAT
- BPEL
- DG_XML
- MURANO_PKG
- WORKFLOW
- NETWORK_CALL_FLOW
- TOSCA_TEMPLATE
- TOSCA_CSAR
- AAI_SERVICE_MODEL
- AAI_VF_MODEL
- AAI_VF_MODULE_MODEL
- AAI_VF_INSTANCE_MODEL
- OTHER
- SNMP_POLL
- SNMP_TRAP
- GUIDE
- PLAN
# License types placeholder
licenseTypes:
- User
- Installation
- CPU
# Resource types placeholder
resourceTypes: &allResourceTypes
- VFC
- CP
- VL
- VF
- CR
- VFCMT
- Abstract
- CVFC
#Deployment resource artifacts placeHolder
deploymentResourceArtifacts:
# Deployment resource instance artifact placeholders
# For each artifact the following properties exist:
#
# displayName - The display name of the artifact
# type - The type of the artifact
# description - The description of the artifact
# fileExtension - The file extension of the artifact file for uploading
deploymentResourceInstanceArtifacts:
heatEnv:
displayName: "HEAT ENV"
type: HEAT_ENV
description: "Auto-generated HEAT Environment deployment artifact"
fileExtension: "env"
VfHeatEnv:
displayName: "VF HEAT ENV"
type: HEAT_ENV
description: "VF Auto-generated HEAT Environment deployment artifact"
fileExtension: "env"
# Tosca artifacts placeholders
# For each artifact there is a template and a scar.
# For each one the following properties exists:
#
# artifactName - The suffix of the artifact file
# displayName - The display name of the artifact
# type - The type of the artifact
# description - The description of the artifact
toscaArtifacts:
assetToscaTemplate:
artifactName: -template.yml
displayName: Tosca Template
type: TOSCA_TEMPLATE
description: TOSCA representation of the asset
assetToscaCsar:
artifactName: -csar.csar
displayName: Tosca Model
type: TOSCA_CSAR
description: TOSCA definition package of the asset
# Resource category to exclude
excludeResourceCategory:
- Generic
# Resource type to exclude
excludeResourceType:
- PNF
- CR
# Informational resource artifacts placeHolder
# For each artifact the following properties exists:
#
# displayName - The display name of the artifact
# type - The type of the artifact
informationalResourceArtifacts:
features:
displayName: Features
type: OTHER
capacity:
displayName: Capacity
type: OTHER
vendorTestResult:
displayName: Vendor Test Result
type: OTHER
testScripts:
displayName: Test Scripts
type: OTHER
CloudQuestionnaire:
displayName: Cloud Questionnaire (completed)
type: OTHER
HEATTemplateFromVendor:
displayName: HEAT Template from Vendor
type: HEAT
resourceSecurityTemplate:
displayName: Resource Security Template
type: OTHER
# Service category to exclude
excludeServiceCategory:
# Informational service artifacts placeHolder
# For each artifact the following properties exists:
#
# displayName - The display name of the artifact
# type - The type of the artifact
informationalServiceArtifacts:
serviceArtifactPlan:
displayName: Service Artifact Plan
type: OTHER
summaryOfImpactsToECOMPElements:
displayName: Summary of impacts to ECOMP elements,OSSs, BSSs
type: OTHER
controlLoopFunctions:
displayName: Control Loop Functions
type: OTHER
dimensioningInfo:
displayName: Dimensioning Info
type: OTHER
affinityRules:
displayName: Affinity Rules
type: OTHER
operationalPolicies:
displayName: Operational Policies
type: OTHER
serviceSpecificPolicies:
displayName: Service-specific Policies
type: OTHER
engineeringRules:
displayName: Engineering Rules (ERD)
type: OTHER
distributionInstructions:
displayName: Distribution Instructions
type: OTHER
certificationTestResults:
displayName: TD Certification Test Results
type: OTHER
deploymentVotingRecord:
displayName: Deployment Voting Record
type: OTHER
serviceQuestionnaire:
displayName: Service Questionnaire
type: OTHER
serviceSecurityTemplate:
displayName: Service Security Template
type: OTHER
# Service api artifacts placeHolder
# For each artifact the following properties exists:
#
# displayName - The display name of the artifact
# type - The type of the artifact
serviceApiArtifacts:
configuration:
displayName: Configuration
type: OTHER
instantiation:
displayName: Instantiation
type: OTHER
monitoring:
displayName: Monitoring
type: OTHER
reporting:
displayName: Reporting
type: OTHER
logging:
displayName: Logging
type: OTHER
testing:
displayName: Testing
type: OTHER
# The maximum number of keys permitted for additional information on service
additionalInformationMaxNumberOfKeys: 50
# Collect process statistics
systemMonitoring:
# Should monitoring be enabled
enabled: false
# In case of going through the FE server proxy the information to the BE
isProxy: false
# What is the interval of the statistics collection
probeIntervalInSeconds: 15
defaultHeatArtifactTimeoutMinutes: 60
# Service deployment artifacts placeHolder
# For each artifact the following properties exists:
#
# acceptedTypes - File types that can be uploaded as each artifact
serviceDeploymentArtifacts:
YANG_XML:
acceptedTypes:
- xml
VNF_CATALOG:
acceptedTypes:
- xml
MODEL_INVENTORY_PROFILE:
acceptedTypes:
- xml
MODEL_QUERY_SPEC:
acceptedTypes:
- xml
UCPE_LAYER_2_CONFIGURATION:
acceptedTypes:
- xml
#AAI Artifacts
AAI_SERVICE_MODEL:
acceptedTypes:
- xml
AAI_VF_MODULE_MODEL:
acceptedTypes:
- xml
AAI_VF_INSTANCE_MODEL:
acceptedTypes:
- xml
UCPE_LAYER_2_CONFIGURATION:
acceptedTypes:
- xml
OTHER:
acceptedTypes:
#PLAN
PLAN:
acceptedTypes:
- xml
WORKFLOW:
acceptedTypes:
# Resource deployment artifacts placeHolder
# For each artifact the following properties exists:
#
# acceptedTypes - File types that can be uploaded as each artifact
# validForRespurceTypes - Resource types that support each artifact.
# If left empty it means all resource types are valid
resourceDeploymentArtifacts:
HEAT:
acceptedTypes:
- yaml
- yml
validForResourceTypes: *allResourceTypes
HEAT_VOL:
acceptedTypes:
- yaml
- yml
validForResourceTypes: *allResourceTypes
HEAT_NET:
acceptedTypes:
- yaml
- yml
validForResourceTypes: *allResourceTypes
HEAT_NESTED:
acceptedTypes:
- yaml
- yml
validForResourceTypes: *allResourceTypes
HEAT_ARTIFACT:
acceptedTypes:
validForResourceTypes: *allResourceTypes
YANG_XML:
acceptedTypes:
- xml
validForResourceTypes: *allResourceTypes
VNF_CATALOG:
acceptedTypes:
- xml
validForResourceTypes: *allResourceTypes
VF_LICENSE:
acceptedTypes:
- xml
validForResourceTypes: *allResourceTypes
VENDOR_LICENSE:
acceptedTypes:
- xml
validForResourceTypes: *allResourceTypes
MODEL_INVENTORY_PROFILE:
acceptedTypes:
- xml
validForResourceTypes: *allResourceTypes
MODEL_QUERY_SPEC:
acceptedTypes:
- xml
validForResourceTypes: *allResourceTypes
LIFECYCLE_OPERATIONS:
acceptedTypes:
- yaml
- yml
validForResourceTypes:
- VF
- VFC
VES_EVENTS:
acceptedTypes:
- yaml
- yml
validForResourceTypes: *allResourceTypes
PERFORMANCE_COUNTER:
acceptedTypes:
- csv
validForResourceTypes: *allResourceTypes
APPC_CONFIG:
acceptedTypes:
validForResourceTypes:
- VF
DCAE_TOSCA:
acceptedTypes:
- yml
- yaml
validForResourceTypes:
- VF
- VFCMT
DCAE_JSON:
acceptedTypes:
- json
validForResourceTypes:
- VF
- VFCMT
DCAE_POLICY:
acceptedTypes:
- emf
validForResourceTypes:
- VF
- VFCMT
DCAE_DOC:
acceptedTypes:
validForResourceTypes:
- VF
- VFCMT
DCAE_EVENT:
acceptedTypes:
validForResourceTypes:
- VF
- VFCMT
AAI_VF_MODEL:
acceptedTypes:
- xml
validForResourceTypes:
- VF
AAI_VF_MODULE_MODEL:
acceptedTypes:
- xml
validForResourceTypes:
- VF
OTHER:
acceptedTypes:
validForResourceTypes: *allResourceTypes
SNMP_POLL:
acceptedTypes:
validForResourceTypes: *allResourceTypes
SNMP_TRAP:
acceptedTypes:
validForResourceTypes: *allResourceTypes
#PLAN
PLAN:
acceptedTypes:
- xml
validForResourceTypes:
- VF
- VFC
WORKFLOW:
acceptedTypes:
# Resource instance deployment artifacts placeHolder
# For each artifact the following properties exists:
#
# acceptedTypes - File types that can be uploaded as each artifact
# validForRespurceTypes - Resource types that support each artifact.
# If left empty it means all resource types are valid
resourceInstanceDeploymentArtifacts:
HEAT_ENV:
acceptedTypes:
- env
VF_MODULES_METADATA:
acceptedTypes:
- json
VES_EVENTS:
acceptedTypes:
- yaml
- yml
PERFORMANCE_COUNTER:
acceptedTypes:
- csv
DCAE_INVENTORY_TOSCA:
acceptedTypes:
- yml
- yaml
DCAE_INVENTORY_JSON:
acceptedTypes:
- json
DCAE_INVENTORY_POLICY:
acceptedTypes:
- emf
DCAE_INVENTORY_DOC:
acceptedTypes:
DCAE_INVENTORY_BLUEPRINT:
acceptedTypes:
DCAE_INVENTORY_EVENT:
acceptedTypes:
SNMP_POLL:
acceptedTypes:
validForResourceTypes: *allResourceTypes
SNMP_TRAP:
acceptedTypes:
validForResourceTypes: *allResourceTypes
#PLAN
PLAN:
acceptedTypes:
- xml
# Resource informational artifacts placeHolder
# For each artifact the following properties exists:
#
# acceptedTypes - File types that can be uploaded as each artifact
# validForRespurceTypes - Resource types that support each artifact.
# If left empty it means all resource types are valid
resourceInformationalArtifacts:
CHEF:
acceptedTypes:
validForResourceTypes: *allResourceTypes
PUPPET:
acceptedTypes:
validForResourceTypes: *allResourceTypes
SHELL:
acceptedTypes:
validForResourceTypes: *allResourceTypes
YANG:
acceptedTypes:
validForResourceTypes: *allResourceTypes
YANG_XML:
acceptedTypes:
validForResourceTypes: *allResourceTypes
HEAT:
acceptedTypes:
validForResourceTypes: *allResourceTypes
BPEL:
acceptedTypes:
validForResourceTypes: *allResourceTypes
DG_XML:
acceptedTypes:
validForResourceTypes: *allResourceTypes
MURANO_PKG:
acceptedTypes:
validForResourceTypes: *allResourceTypes
OTHER:
acceptedTypes:
validForResourceTypes:
- VFC
- CVFC
- CP
- VL
- VF
- CR
- VFCMT
- Abstract
- PNF
SNMP_POLL:
acceptedTypes:
validForResourceTypes: *allResourceTypes
SNMP_TRAP:
acceptedTypes:
validForResourceTypes: *allResourceTypes
GUIDE:
acceptedTypes:
validForResourceTypes:
- VF
- VFC
- CVFC
# Resource informational deployment artifact placeholder
resourceInformationalDeployedArtifacts:
# Requirements needed to be fulfilled before certification
requirementsToFulfillBeforeCert:
# Capabilities needed to be fulfilled before certification
capabilitiesToConsumeBeforeCert:
# Urls that should not be logged
unLoggedUrls:
- /sdc2/rest/healthCheck
# When component is being set as deleted those are the clean configurations
cleanComponentsConfiguration:
# The interval to check for deleted components to clean
cleanIntervalInMinutes: 1440
# The components types to delete
componentsToClean:
- Resource
- Service
# Deprecated. Will be removed in future releases
artifactsIndex: resources
# Used to add header and footer to heatENV files generated by SDC
heatEnvArtifactHeader: ""
heatEnvArtifactFooter: ""
onboarding:
# Onboarding protocol
protocol: http
# Onboarding backend hostname
host: <%= @host_ip %>
# Onboarding backend http port
port: <%= @catalog_port %>
# The url that being used when downloading CSARs
downloadCsarUri: "/onboarding-api/v1.0/vendor-software-products/packages"
# Url for onboarding health check
healthCheckUri: "/onboarding-api/v1.0/healthcheck"
dcae:
# The ip of the onboarding docker
host: <%= @dcae_be_vip %>
# The protocol to use
protocol: <https/http>
# The port the docker is listening on
port: <port>
# The url of the health check to use
healthCheckUri: "/dcae/healthCheck"
#GSS IDNS
# Switchover configuration is used for Geo redundancy to provide automatic failovers
switchoverDetector:
gBeFqdn:
gFeFqdn:
beVip: 1.2.3.4
feVip: 1.2.3.4
beResolveAttempts: 3
feResolveAttempts: 3
enabled: false
interval: 60
changePriorityUser: ecompasdc
changePriorityPassword: ecompasdc123
publishNetworkUrl:
publishNetworkBody: '{"note":"comment"}'
groups:
beSet: { changePriorityUrl: "", changePriorityBody: '{"name":"","uri":"","no_ad_redirection":false,"v4groups":{"failover_groups":["","","failover_policy":["FAILALL"]},"comment":"","intended_app_proto":"DNS"}'}
feSet: { changePriorityUrl: "", changePriorityBody: '{"name":"","uri":"","no_ad_redirection":false,"v4groups":{"failover_groups":["",""],"failover_policy":["FAILALL"]},"comment":"","intended_app_proto":"DNS"}'}
# Cache for datatypes. Improving run times for data type search
applicationL1Cache:
datatypes:
enabled: true
firstRunDelay: 10
pollIntervalInSec: 60
# Deprecated. Will be removed in future releases
applicationL2Cache:
enabled: false
catalogL1Cache:
enabled: false
resourcesSizeInCache: 300
servicesSizeInCache: 200
productsSizeInCache: 100
queue:
syncIntervalInSecondes: 43200
waitOnShutDownInMinutes: 10
numberOfCacheWorkers: 4
# Validators for Tosca properties
toscaValidators:
stringMaxLength: 2500
# Should audit be disabled
disableAudit: false
# VF module validations properties
vfModuleProperties:
min_vf_module_instances:
forBaseModule: 1
forNonBaseModule: 0
max_vf_module_instances:
forBaseModule: 1
forNonBaseModule:
initial_count:
forBaseModule: 1
forNonBaseModule: 0
vf_module_type:
forBaseModule: Base
forNonBaseModule: Expansion
# For each generic node type defining it's corresponding class
genericAssetNodeTypes:
VFC: org.openecomp.resource.abstract.nodes.VFC
CVFC: org.openecomp.resource.abstract.nodes.VFC
VF : org.openecomp.resource.abstract.nodes.VF
PNF: org.openecomp.resource.abstract.nodes.PNF
Service: org.openecomp.resource.abstract.nodes.service
# tenant isolation configuration
workloadContext: Production
# tenant isolation configuration
environmentContext:
defaultValue: General_Revenue-Bearing
validValues:
- Critical_Revenue-Bearing
- Vital_Revenue-Bearing
- Essential_Revenue-Bearing
- Important_Revenue-Bearing
- Needed_Revenue-Bearing
- Useful_Revenue-Bearing
- General_Revenue-Bearing
- Critical_Non-Revenue
- Vital_Non-Revenue
- Essential_Non-Revenue
- Important_Non-Revenue
- Needed_Non-Revenue
- Useful_Non-Revenue
- General_Non-Revenue
# tenant isolation configuration
dmaapConsumerConfiguration:
hosts: localhost:3905
consumerGroup: sdc
consumerId: mama
timeoutMs: 15000
limit: 1
pollingInterval: 2
topic: topic
latitude: 32.109333
longitude: 34.855499
version: 1.0
serviceName: localhost/events
environment: TEST
partner: BOT_R
routeOffer: MR1
protocol: https
contenttype: application/json
dme2TraceOn: true
aftEnvironment: AFTUAT
aftDme2ConnectionTimeoutMs: 15000
aftDme2RoundtripTimeoutMs: 240000
aftDme2ReadTimeoutMs: 50000
dme2preferredRouterFilePath: DME2preferredRouter.txt
timeLimitForNotificationHandleMs: 120000
credential:
username: user
password:
# tenant isolation configuration
dmeConfiguration:
dme2Search: DME2SEARCH
dme2Resolve: DME2RESOLVE
# definition for policies types that cannot by created by api
excludedPolicyTypesMapping:
# VF:
# - a.b.c
# - c.d.e
#CR:
# - x.y.z
# defanition for group types that cannot by created by api
excludedGroupTypesMapping:
CR:
- org.openecomp.groups.VfModule
- org.openecomp.groups.heat.HeatStack
- tosca.groups.Root
PNF:
- org.openecomp.groups.VfModule
- org.openecomp.groups.heat.HeatStack
- tosca.groups.Root
VF:
- org.openecomp.groups.VfModule
- org.openecomp.groups.heat.HeatStack
- tosca.groups.Root
Service:
- org.openecomp.groups.VfModule
- org.openecomp.groups.heat.HeatStack
- tosca.groups.Root
healthStatusExclude:
- DE
- DMAAP
- DCAE
BE-distribution-engine-configuration.yaml
*****************************************
::
# UEB servers list
uebServers:
<% node['UEB']['fqdn'].each do |conn| -%>
- <%= conn %>
<% end -%>
# UEB public key
uebPublicKey: <%= node['UEB']['PublicKey'] %>
# UEB secret key
uebSecretKey: <%= node['UEB']['SecretKey'] %>
# Topic name for receiving distribution notification
distributionNotifTopicName: SDC-DISTR-NOTIF-TOPIC
# Topic name for distribution status
distributionStatusTopicName: SDC-DISTR-STATUS-TOPIC
# Distribution initialization retry interval time
initRetryIntervalSec: 5
# Distribution initialization maximum interval time
initMaxIntervalSec: 60
# Deprecated. Will be removed in future releases
distribNotifServiceArtifactTypes:
info:
- MURANO-PKG
# Deprecated. Will be removed in future releases
distribNotifResourceArtifactTypes:
lifecycle:
- HEAT
- DG-XML
# Distribution environments
environments:
- <%= node.chef_environment %>
distributionStatusTopic:
# Distribution status polling interval
pollingIntervalSec: 60
# Distribution status fetch time
fetchTimeSec: 15
# Distribution status consumer group
consumerGroup: sdc-<%= node.chef_environment %>
# Distribution status consumer id
consumerId: sdc-<%= node.chef_environment %>1
distributionNotificationTopic:
# Minimum pool size for distribution notifications
minThreadPoolSize: 0
# Maximum pool size for distribution notifications
maxThreadPoolSize: 10
# Maximum waiting time after sending a notification
maxWaitingAfterSendingSeconds: 5
# Deprecated. Will be removed in future releases
createTopic:
partitionCount: 1
replicationCount: 1
# STarting the distribution engine
startDistributionEngine: true
#This is false by default, since ONAP Dmaap currently doesn't support https
# Does https should be used with Dmaap
useHttpsWithDmaap: false
opEnvRecoveryIntervalSec: 180
allowedTimeBeforeStaleSec: 300
# aai configuration for tenant isolation
aaiConfig:
httpRequestConfig:
serverRootUrl: https://aai-uint3.test.att.com:8443
resourceNamespaces:
operationalEnvironments: /aai/v12/cloud-infrastructure/operational-environments
httpClientConfig:
timeouts:
readTimeoutMs: 5000
connectTimeoutMs: 1000
clientCertificate:
keyStore: /opt/app/jetty/base/be/etc/non-prod.jks
keyStorePassword: hmXYcznAljMSisdy8zgcag==
headers:
X-FromAppId: asdc
numOfRetries: 3
# mso configuration for tenant isolation
msoConfig:
httpRequestConfig:
serverRootUrl: http://127.0.0.1:8080/onap/mso/infra/modelDistributions/v1
resourceNamespaces:
distributions: /distributions
httpClientConfig:
timeouts:
readTimeoutMs: 2000
connectTimeoutMs: 500
basicAuthorization:
userName: asdc
password: OTLEp5lfVhYdyw5EAtTUBQ==
numOfRetries: 3
currentArtifactInstallationTimeout: 120
BE-titan.properties
*******************
::
# Titan storage backend
storage.backend=cassandra
# Titan storage hostname
storage.hostname=<%= @CASSANDRA_IP %>
# Titan storage port]
storage.port=9160
# Titan storage username
storage.username=<%= @CASSANDRA_USR %>
# Titan storage password
storage.password=<%= @CASSANDRA_PWD %>
# Titan storage connection timeout
storage.connection-timeout=10000
# Titan cassandra keyspace name
storage.cassandra.keyspace=sdctitan
# Is Titan cassandra ssl is enabled
storage.cassandra.ssl.enabled=false
# Titan cassandra ssl truststore file location
storage.cassandra.ssl.truststore.location=/var/lib/jetty/config/.truststore
# Titan cassandra ssl truststore file password
storage.cassandra.ssl.truststore.password=Aa123456
# Does titan should use cache
cache.db-cache = false
# How long in milliseconds should the cache keep entries before flushing them
cache.db-cache-clean-wait = 20
# Default expiration time in milliseconds for entries in the cache
cache.db-cache-time = 180000
# Size of titan database cache
cache.db-cache-size = 0.5
# Titan cassandra read consistency level
storage.cassandra.read-consistency-level=LOCAL_QUORUM
# Titan cassandra write consistency level
storage.cassandra.write-consistency-level=LOCAL_QUORUM
# Titan cassandra replication strategy class name
storage.cassandra.replication-strategy-class=org.apache.cassandra.locator.NetworkTopologyStrategy
# Titan cassandra replication startegy options
storage.cassandra.replication-strategy-options=<%= @DC_NAME %>,<%= @rep_factor %>
# Titan cassandra local data center name
storage.cassandra.astyanax.local-datacenter=<%= @DC_NAME %>
# Number of times the system attempts to acquire a lock before giving up and throwing an exception
storage.lock.retries=5
# Number of milliseconds the system waits for a lock application to be acknowledged by the storage backend
storage.lock.wait-time=500
Onboarding configuration
------------------------
BE-onboarding-configuration.yaml
********************************
::
notifications:
# Backend onboarding notifications polling interval in milliseconds
pollingIntervalMsec: 2000
# Backend onboarding notifications selection size
selectionSize: 100
# Backend onboarding notifications backend hostname
beHost: <%= @catalog_ip %>
# Backend onboarding notifications backend http port
beHttpPort: <%= @catalog_port %>
# Casandra configuration
cassandraConfig:
cassandraHosts: [<%= @cassandra_ip %>]
localDataCenter: <%= @DC_NAME %>
reconnectTimeout : 30000
socketReadTimeout: <%= @socket_read_timeout %>
socketConnectTimeout: <%= @socket_connect_timeout %>
authenticate: true
username: <%= @cassandra_usr %>
password: <%= @cassandra_pwd %>
ssl: <%= @cassandra_ssl_enabled %>
truststorePath: /config/truststore
truststorePassword: <%= @cassandra_truststore_password %>
externaltesting-configuration.yaml
**********************************
::
# configuration to make available to the front end of this feature
client:
enabled: true
# array of endpoints that SDC-BE should connect with for external testing
# id,label,enabled,url[,scenariofilter][,apikey]
endpoints:
- vtp:VTP,true,http://<hostname>[:<port>]/onapapi/vnfsdk-marketplace,c.*
- repository:Repository,false,http://<ovphostname>[:<ovpport>]
vnfrepo-configuration.yaml
**************************
::
# The port on which the vnfsdk is licensing on
vnfRepoPort: <port>
# The ip where vnfdk is deployed
vnfRepoHost: <ip>
# The url used for querying the vnf sdk for available CSARS
getVnfUri: /onapapi/vnfsdk-marketplace/v1/PackageResource/csars
# The url used for downloading the the CSAR from vnf sdk
downloadVnfUri: /onapapi/vnfsdk-marketplace/v1/PackageResource/csars/%s/files
Frontend Configuration
======================
Catalog configuration
---------------------
FE-configuration.yaml
*********************
::
# Catalog frontend hostname
feFqdn: <%= @fe_host_ip %>
# Catalog backend hostname
beHost: <%= @be_host_ip %>
# Catalog backend http port
beHttpPort: <%= @catalog_port %>
# Catalog backend http context
beContext: /sdc2/rest/v1/catalog/upload/resources
# Catalog backend protocol
beProtocol: http
# Catalog backend ssl port
beSslPort: <%= @ssl_port %>
# Threadpool size for handling requests
threadpoolSize: 50
# Request processing timeout (seconds)
requestTimeout: 10
# Health check timeout in milliseconds
healthCheckSocketTimeoutInMs: 5000
# Health check inteval in seconds
healthCheckIntervalInSeconds: 5
onboarding:
# Onboarding protocol
protocol: http
# Onboarding frontend hostname
host: <%= @fe_host_ip %>
# Onboarding frontend port
port: 8181
# Onboarding frontend health check url
healthCheckUri: "/onboarding/v1.0/healthcheck"
# Request headers for identification of the user that made the request
identificationHeaderFields:
-
- &HTTP_IV_USER HTTP_IV_USER
- &iv-user iv-user
-
- &USER_ID USER_ID
- &user-id user-id
-
- &HTTP_CSP_ATTUID HTTP_CSP_ATTUID
- &csp-attuid csp-attuid
-
- &HTTP_CSP_WSTYPE HTTP_CSP_WSTYPE
- &csp-wstype csp-wstype
# Optional request headers
optionalHeaderFields:
-
- &HTTP_CSP_FIRSTNAME HTTP_CSP_FIRSTNAME
- &csp-firstname csp-firstname
-
- &HTTP_CSP_LASTNAME HTTP_CSP_LASTNAME
- &csp-lastname csp-lastname
-
- &HTTP_IV_REMOTE_ADDRESS HTTP_IV_REMOTE_ADDRESS
- &iv-remote-address iv-remote-address
-
- &HTTP_CSP_EMAIL HTTP_CSP_EMAIL
- &csp-email csp-email
# Frontend configuration version
version: 1.0
# Frontend configuration release date
released: 2012-11-30
# Connection parameters
connection:
url: jdbc:mysql://localhost:3306/db
poolSize: 17
# Protocols being used in SDC
protocols:
- http
- https
# Collect process statistics
systemMonitoring:
# Should monitoring be enabled
enabled: false
# In case of going through the FE server proxy the information to the BE
isProxy: true
# What is the interval of the statistics collection
probeIntervalInSeconds: 15
# Kibana hostname
kibanaHost: localhost
# Kibana http port
kibanaPort: 5601
# Kibana usage protocol
kibanaProtocol: http
FE-plugins-configuration.yaml
*****************************
::
# defnition of the plugins that exist in sdc
# we have a pre defined list of plugins that are conected to the system.
# the plugins define where they are shown to who and on what elements
pluginsList:
# the DCAE-DS is the SDC monitoring design studio this entry defines there use as part of the service level context
- pluginId: DCAED
# this defines from which url to chek that they are available
pluginDiscoveryUrl: <%= @dcae_discovery_url %>
# this defines from wht URL will ther you be served.
pluginSourceUrl: <%= @dcae_source_url %>
#thsi defines the plugin state name used by the UI for sending messages.
pluginStateUrl: "dcaed"
# the display options for the plugin
pluginDisplayOptions:
# the plugin will be displayed in the context of a catalog item
context:
# what will the option tag in the ui will be called
displayName: "Monitoring"
# under what catalog item to display it
displayContext: ["SERVICE"]
# what user roles will have the option to access the plugin
displayRoles: ["DESIGNER"]
# DCAE-DS as a tab
- pluginId: DCAE-DS
pluginDiscoveryUrl: <%= @dcae_dt_discovery_url %>
pluginSourceUrl: <%= @dcae_dt_source_url %>
pluginStateUrl: "dcae-ds"
pluginDisplayOptions:
tab:
displayName: "DCAE-DS"
displayRoles: ["DESIGNER"]
#work flow plugin
- pluginId: WORKFLOW
pluginDiscoveryUrl: <%= @workflow_discovery_url %>
pluginSourceUrl: <%= @workflow_source_url %>
pluginStateUrl: "workflowDesigner"
pluginDisplayOptions:
tab:
displayName: "WORKFLOW"
displayRoles: ["DESIGNER", "TESTER"]
# how long we will wai for the plugin to respond before cuting it.
connectionTimeout: 1000
Onboarding configuration
------------------------
FE-onboarding-configuration.yaml
********************************
::
notifications:
# Frontend onboarding notifications polling interval in milliseconds
pollingIntervalMsec: 2000
# Frontend onboarding notifications selection size
selectionSize: 100
# Frontend onboarding notifications backend hostname
beHost: <%= @catalog_ip %>
# Frontend onboarding notifications backend http port
beHttpPort: <%= @catalog_port %>
|