Add PROMETHEUS_PORT
[osm/tests.git] / robot-systest / resources / basic_01-crud_operations_on_vim_targets_data.py
1 # Licensed under the Apache License, Version 2.0 (the "License");
2 # you may not use this file except in compliance with the License.
3 # You may obtain a copy of the License at
4 #
5 # http://www.apache.org/licenses/LICENSE-2.0
6 #
7 # Unless required by applicable law or agreed to in writing, software
8 # distributed under the License is distributed on an "AS IS" BASIS,
9 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 # See the License for the specific language governing permissions and
11 # limitations under the License.
12
13 import os
14 from pathlib import Path
15 import yaml
16 from common_helpers import get_prometheus_info
17
18
19 # Prometheus host and port
20 (prometheus_host, prometheus_port) = get_prometheus_info()
21
22 # VIM Configuration
23 vim_account_type = "openstack"
24 vim_name_prefix = "basic_01_vim_test"
25 # Get credentias from Openstack Clouds file
26 os_cloud = os.environ.get("OS_CLOUD")
27 clouds_file_paths = ["./clouds.yaml", str(Path.home()) + "/.config/openstack/clouds.yaml", "/etc/openstack/clouds.yaml"]
28 for path in clouds_file_paths:
29 clouds_file_path = Path(path)
30 if clouds_file_path.exists():
31 break
32 if not clouds_file_path.exists():
33 raise Exception("Openstack clouds file not found")
34 with clouds_file_path.open() as clouds_file:
35 clouds = yaml.safe_load(clouds_file)
36 if not os_cloud in clouds["clouds"]:
37 raise Exception("Openstack cloud '" + os_cloud + "' not found")
38 cloud = clouds["clouds"][os_cloud]
39 if not "username" in cloud["auth"]:
40 raise Exception("Username not found in Openstack cloud '" + os_cloud + "'")
41 vim_user = cloud["auth"]["username"]
42 if not "password" in cloud["auth"]:
43 raise Exception("Password not found in Openstack cloud '" + os_cloud + "'")
44 vim_password = cloud["auth"]["password"]
45 if not "auth_url" in cloud["auth"]:
46 raise Exception("Auth url not found in Openstack cloud '" + os_cloud + "'")
47 vim_auth_url = cloud["auth"]["auth_url"]
48 if not "project_name" in cloud["auth"]:
49 raise Exception("Project name not found in Openstack cloud '" + os_cloud + "'")
50 vim_tenant = cloud["auth"]["project_name"]
51 vim_user_domain_name = cloud["auth"]["user_domain_name"] if "user_domain_name" in cloud["auth"] else None
52 vim_project_domain_name = cloud["auth"]["project_domain_name"] if "project_domain_name" in cloud["auth"] else None
53 vim_insecure = True if "verify" in cloud and not cloud["verify"] else None
54
55 # Extra config
56 vim_config_dict = {}
57 vim_config_dict["vim_network_name"] = os.environ.get("VIM_MGMT_NET")
58 if vim_project_domain_name:
59 vim_config_dict["project_domain_name"] = vim_project_domain_name
60 if vim_user_domain_name:
61 vim_config_dict["user_domain_name"] = vim_user_domain_name
62 if vim_insecure:
63 vim_config_dict["insecure"] = True
64 vim_config = "'{}'".format(yaml.safe_dump(vim_config_dict, default_flow_style=True, width=10000).rstrip('\r\n'))