diff options
author | mrichomme <morgan.richomme@orange.com> | 2020-09-04 17:03:23 +0200 |
---|---|---|
committer | mrichomme <morgan.richomme@orange.com> | 2020-09-08 11:03:28 +0200 |
commit | 076a0030b70a875535f7fcabb7acafe7cf478746 (patch) | |
tree | 0f5a62fad16fa4fb930ae0436bf158c20d9ff6b1 /src/onaptests/configuration/ubuntu16_nomulticloud_noyaml_settings.py | |
parent | 6022ac2e68ece3720bcfa57b290d73ac0eb238c1 (diff) |
Support non multicloud configuration
Add tenant and availability zone manually
It is done by multicloud in multicloud mode
Use settings.py as the main settings and specific
settings per use case
Issue-ID: TEST-256
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: I3a66a8416cddb546780f784568e7a88f2bd1781b
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Diffstat (limited to 'src/onaptests/configuration/ubuntu16_nomulticloud_noyaml_settings.py')
-rw-r--r-- | src/onaptests/configuration/ubuntu16_nomulticloud_noyaml_settings.py | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/onaptests/configuration/ubuntu16_nomulticloud_noyaml_settings.py b/src/onaptests/configuration/ubuntu16_nomulticloud_noyaml_settings.py new file mode 100644 index 0000000..52d5922 --- /dev/null +++ b/src/onaptests/configuration/ubuntu16_nomulticloud_noyaml_settings.py @@ -0,0 +1,56 @@ +import os +import openstack + +# pylint: disable=unused-import +from .settings import * + +# The ONAP part +USE_MULTICLOUD = False + +VENDOR_NAME = "basicvm_vendor" +VSP_NAME = "basicvm_ubuntu_vsp" +SERVICE_NAME = "basicvm-ubuntu-service" +VF_NAME = "basicvm_ubuntu_vf" + +CLOUD_REGION_CLOUD_OWNER = "basicvm-cloud-owner" +CLOUD_REGION_ID = "RegionOne" +CLOUD_REGION_TYPE = "openstack" +CLOUD_REGION_VERSION = "openstack" +CLOUD_DOMAIN = "Default" + +AVAILABILITY_ZONE_NAME = "basicvm-availability-zone" +AVAILABILITY_ZONE_TYPE = "nova" +COMPLEX_PHYSICAL_LOCATION_ID = "lannion" +COMPLEX_DATA_CENTER_CODE = "1234-5" + +GLOBAL_CUSTOMER_ID = "basicvm-customer" + +OWNING_ENTITY = "basicvm-oe" +PROJECT = "basicvm-project" +LINE_OF_BUSINESS = "basicvm-lob" +PLATFORM = "basicvm-platform" + +SERVICE_INSTANCE_NAME = "basicvm_ubuntu16_service_instance" + +VSP_FILE_PATH = "templates/heat_files/ubuntu16/ubuntu16.zip" + +# The cloud Part +# TODO use the openstack client and assume a cloud.yaml is Provided +# to avoid data duplication +CLOUD_REGION_ID = "RegionOne" + +TEST_CLOUD = os.getenv('OS_TEST_CLOUD', 'onap-cloud-config') +try: + cloud = openstack.connect(cloud=TEST_CLOUD) + VIM_USERNAME = cloud.config.auth['username'] + VIM_PASSWORD = cloud.config.auth['password'] + VIM_SERVICE_URL = cloud.config.auth['auth_url'] + # need a keystone authent to retrieve project info + TENANT_ID = "" # Fill me + TENANT_NAME = "" # Fill me +except ValueError: + TENANT_ID = "" # Fill me + TENANT_NAME = "" # Fill me + VIM_USERNAME = "" # Fill me + VIM_PASSWORD = "" # Fill me + VIM_SERVICE_URL = "" # Fill me |