diff options
Diffstat (limited to 'src/onaptests/configuration/ubuntu16_nomulticloud_settings.py')
-rw-r--r-- | src/onaptests/configuration/ubuntu16_nomulticloud_settings.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/onaptests/configuration/ubuntu16_nomulticloud_settings.py b/src/onaptests/configuration/ubuntu16_nomulticloud_settings.py index ae716e7..84f994a 100644 --- a/src/onaptests/configuration/ubuntu16_nomulticloud_settings.py +++ b/src/onaptests/configuration/ubuntu16_nomulticloud_settings.py @@ -4,14 +4,17 @@ from yaml import load from .settings import * # pylint: disable=W0614 -""" Specific ubuntu16 without multicloud and without yaml config scenario.""" +""" Specific ubuntu16 without multicloud.""" # pylint: disable=bad-whitespace # The ONAP part USE_MULTICLOUD = False SERVICE_YAML_TEMPLATE = "templates/vnf-services/ubuntu16test-service.yaml" - +CLEANUP_FLAG = True +CLEANUP_ACTIVITY_TIMER = 10 # nb of seconds before cleanup in case cleanup option is set VENDOR_NAME = "basicvm_vendor" + +VF_NAME = "basicvm_ubuntu_vf" VSP_NAME = "basicvm_ubuntu_vsp" try: # Try to retrieve the SERVICE NAME from the yaml file @@ -21,8 +24,6 @@ try: except ValueError: SERVICE_NAME = "" # Fill me -VF_NAME = "basicvm_ubuntu_vf" - CLOUD_REGION_CLOUD_OWNER = "basicvm-cloud-owner" CLOUD_REGION_TYPE = "openstack" CLOUD_REGION_VERSION = "openstack" @@ -39,7 +40,7 @@ PROJECT = "basicvm-project" LINE_OF_BUSINESS = "basicvm-lob" PLATFORM = "basicvm-platform" -SERVICE_INSTANCE_NAME = "basicvm_ubuntu16_service_instance_3" +SERVICE_INSTANCE_NAME = "basicvm_ubuntu16_service_instance" VSP_FILE_PATH = "templates/heat_files/ubuntu16/ubuntu16.zip" |