aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/configuration/multi_vnf_ubuntu_settings.py
blob: 78b6a1b86ef0a4ff9b86b7845de74f95ce071ffe (plain)
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
import os
import uuid
from pathlib import Path

import openstack

from onaptests.utils.resources import get_resource_location

from .settings import *  # noqa
from .settings import IF_VALIDATION

VNF_FILENAME_PREFIX = "multi-vnf-ubuntu"
SERVICE_NAME = f"multivnfubuntu{str(uuid.uuid4().hex)[:6]}"
SERVICE_DETAILS = "Onboarding, distribution and instanitation of an Mutli VM service using macro"


CLEANUP_FLAG = True

CDS_DD_FILE = Path(get_resource_location("templates/artifacts/dd_nso_ubuntu.json"))
CDS_CBA_UNENRICHED = Path(get_resource_location("templates/artifacts/nso_ubuntuvnf.zip"))
CDS_CBA_ENRICHED = "/tmp/UBUNTUVNF_enriched.zip"

ONLY_INSTANTIATE = False
USE_MULTICLOUD = False

CLOUD_REGION_CLOUD_OWNER = "Bell-IaaS"
CLOUD_REGION_TYPE = "openstack"
CLOUD_REGION_VERSION = "v1"
CLOUD_OWNER_DEFINED_TYPE = "VNF"

AVAILABILITY_ZONE_NAME = "z1"
AVAILABILITY_ZONE_TYPE = "nova"
COMPLEX_PHYSICAL_LOCATION_ID = "nso-lab-ltec"
COMPLEX_DATA_CENTER_CODE = "nlt"

GLOBAL_CUSTOMER_ID = "ubuntu-customer"

if not IF_VALIDATION:
    TEST_CLOUD = os.getenv('OS_TEST_CLOUD')  # Get values from clouds.yaml
    cloud = openstack.connect(cloud=TEST_CLOUD)
    VIM_USERNAME = cloud.config.auth.get('username', 'nso')
    VIM_PASSWORD = cloud.config.auth.get('password', 'Password123')
    VIM_SERVICE_URL = cloud.config.auth.get('auth_url', 'https://10.195.194.215:5000')
    TENANT_ID = cloud.config.auth.get('project_id', 'e2710e84063b421fab08189818761d55')
    TENANT_NAME = cloud.config.auth.get('project_name', 'nso')
    CLOUD_REGION_ID = cloud.config.auth.get('region_name', 'nso215')
    CLOUD_DOMAIN = cloud.config.auth.get('project_domain_name', 'Default')

OWNING_ENTITY = "seb"
PROJECT = "Project-UbuntuDemo"
LINE_OF_BUSINESS = "wireless"
PLATFORM = "iaas-openstack"
CLOUD_DOMAIN = "Default"

VENDOR_NAME = 'ubuntu_xtesting_vendor'

SERVICE_YAML_TEMPLATE = Path(get_resource_location("templates/vnf-services/" +
                             f"{VNF_FILENAME_PREFIX}-service.yaml"))

MODEL_YAML_TEMPLATE = Path(get_resource_location("templates/vnf-services/" +
                           f"{VNF_FILENAME_PREFIX}-model.yaml"))


generate_service_config_yaml_file(f"{VNF_FILENAME_PREFIX}-service",  # noqa
                                  f"{VNF_FILENAME_PREFIX}-service.yaml.j2",
                                  str(SERVICE_YAML_TEMPLATE))
generate_service_config_yaml_file(f"{VNF_FILENAME_PREFIX}-model",  # noqa
                                  f"{VNF_FILENAME_PREFIX}-model.yaml.j2",
                                  str(MODEL_YAML_TEMPLATE))

SERVICE_INSTANCE_NAME = f"{SERVICE_NAME}_svc"