Revert "Revert "Create basic_cnf test leveraging onapsdk""
[testsuite/pythonsdk-tests.git] / src / onaptests / configuration / ubuntu16_multicloud_yaml_settings.py
1 import sys
2 from .settings import * # pylint: disable=W0614
3
4 """ Specific ubuntu16 with multicloud and yaml config scenario."""
5 SERVICE_DETAILS = ("Onboarding, distribution and instantiation of a VM" +
6                    "using à la carte and Multicloud module")
7 SERVICE_COMPONENTS="SDC, DMAAP, AAI, SO, SDNC, Multicloud"
8
9 USE_MULTICLOUD = True
10 # Set ONLY_INSTANTIATE to true to run an instantiation without repeating
11 # onboarding and related AAI configuration (Cloud config)
12 ONLY_INSTANTIATE= False
13 VENDOR_NAME = "sdktests_vendor"
14 SERVICE_NAME = "ubuntu16test" # must be the same as in YAML
15
16 CLOUD_REGION_CLOUD_OWNER = "sdktestsOwner" # must not contain _
17 CLOUD_REGION_ID = "RegionOne" # should be valid, as otherwise MultiCloud fails
18 CLOUD_REGION_TYPE = "openstack"
19 CLOUD_OWNER_DEFINED_TYPE = "N/A"
20 CLOUD_REGION_VERSION = "titanium_cloud"
21 CLOUD_DOMAIN = "Default"
22
23 COMPLEX_PHYSICAL_LOCATION_ID = "sdktests_complex_physical_location_id"
24 COMPLEX_DATA_CENTER_CODE = "sdktests_complex_data_center_code"
25
26 GLOBAL_CUSTOMER_ID = "sdktests_global_customer_id"
27 TENANT_ID = ""  # Fill me in your custom settings
28 TENANT_NAME= "" # Fill me in your custom settings
29 AVAILABILITY_ZONE_NAME = "" # Fill me in your custom settings
30 AVAILABILITY_ZONE_TYPE = "nova"
31
32 VIM_USERNAME = ""  # Fill me in your custom settings
33 VIM_PASSWORD = ""  # Fill me in your custom settings
34 VIM_SERVICE_URL = ""  # Fill me in your custom settings
35
36 OWNING_ENTITY = "sdktests_owning_entity"
37 PROJECT = "sdktests_project"
38 LINE_OF_BUSINESS = "sdktests_line_of_business"
39 PLATFORM = "sdktests_platform"
40
41 SERVICE_INSTANCE_NAME = "sdktests_service_instance_name"
42
43 SERVICE_YAML_TEMPLATE = sys.path[-1] + "/onaptests/templates/vnf-services/ubuntu16test-service.yaml"