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
72
|
"""Specific settings module.""" # pylint: disable=bad-whitespace
######################
# #
# ONAP INPUTS DATAS #
# #
######################
# Variables to set logger information
# Possible values for logging levels in onapsdk: INFO, DEBUG , WARNING, ERROR
LOG_CONFIG = {
"version": 1,
"disable_existing_loggers": False,
"formatters": {
"default": {
"class": "logging.Formatter",
"format": "%(asctime)s %(levelname)s %(lineno)d:%(filename)s(%(process)d) - %(message)s"
}
},
"handlers": {
"console": {
"level": "DEBUG",
"class": "logging.StreamHandler",
"formatter": "default"
},
"file": {
"level": "DEBUG",
"class": "logging.FileHandler",
"formatter": "default",
"filename": "./pythonsdk.debug.log",
"mode": "w"
}
},
"root": {
"level": "DEBUG",
"handlers": ["console", "file"]
}
}
VENDOR_NAME = "sdktests_vendor"
VSP_NAME = "sdktests_vsp"
VSP_FILE_PATH = "vfw.zip"
SERVICE_NAME = "sdktests-service"
VF_NAME = "sdktests_vf"
CLOUD_REGION_CLOUD_OWNER = "sdktests_cloud_region_owner"
CLOUD_REGION_ID = "sdktests_cloud_region_id"
CLOUD_REGION_TYPE = "openstack"
CLOUD_REGION_VERSION = "titanium_cloud"
CLOUD_DOMAIN = "Default"
COMPLEX_PHYSICAL_LOCATION_ID = "sdktests_complex_physical_location_id"
COMPLEX_DATA_CENTER_CODE = "sdktests_complex_data_center_code"
GLOBAL_CUSTOMER_ID = "sdktests_global_customer_id"
TENANT_ID = "" # Fill me in your custom settings
VIM_USERNAME = "" # Fill me in your custom settings
VIM_PASSWORD = "" # Fill me in your custom settings
VIM_SERVICE_URL = "" # Fill me in your custom settings
OWNING_ENTITY = "sdktests_owning_entity"
PROJECT = "sdktests_project"
LINE_OF_BUSINESS = "sdktests_line_of_business"
PLATFORM = "sdktests_platform"
SERVICE_INSTANCE_NAME = "sdktests_service_instance_name"
SERVICE_YAML_TEMPLATE = "templates/vnf-services/ubuntu16test-service.yaml"
# SOCK_HTTP = "socks5h://127.0.0.1:8080"
|