d45b142302062fdde74c19b801569beee72ef651
[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_REGION_VERSION = "titanium_cloud"
20 CLOUD_DOMAIN = "Default"
21
22 COMPLEX_PHYSICAL_LOCATION_ID = "sdktests_complex_physical_location_id"
23 COMPLEX_DATA_CENTER_CODE = "sdktests_complex_data_center_code"
24
25 GLOBAL_CUSTOMER_ID = "sdktests_global_customer_id"
26 TENANT_ID = ""  # Fill me in your custom settings
27 TENANT_NAME= "" # Fill me in your custom settings
28 AVAILABILITY_ZONE_NAME = "" # Fill me in your custom settings
29 AVAILABILITY_ZONE_TYPE = "nova"
30
31 VIM_USERNAME = ""  # Fill me in your custom settings
32 VIM_PASSWORD = ""  # Fill me in your custom settings
33 VIM_SERVICE_URL = ""  # Fill me in your custom settings
34
35 OWNING_ENTITY = "sdktests_owning_entity"
36 PROJECT = "sdktests_project"
37 LINE_OF_BUSINESS = "sdktests_line_of_business"
38 PLATFORM = "sdktests_platform"
39
40 SERVICE_INSTANCE_NAME = "sdktests_service_instance_name"
41
42 SERVICE_YAML_TEMPLATE = sys.path[-1] + "/onaptests/templates/vnf-services/ubuntu16test-service.yaml"