summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE-os/.gitignore
blob: 8f3fb880d023ca4fa0f0f5f45df28c87986feae5 (plain)
1
2
3
4
5
6
7
8
9
10
11
/target/
.classpath
.project
.settings/
dist/
bin
node
node_modules
app
.tmp
client/bower_components
c { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
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"