From 76878eb2972ad789c2eb7fe3f2eefa285b3e72d6 Mon Sep 17 00:00:00 2001 From: "Sridhar K. N. Rao" Date: Wed, 28 Apr 2021 18:39:15 +0530 Subject: [WIP] - Reporting support for Openstack and K8S Test Runs. This patch adds support for generating report when tests are run for K8S and openstack. Added cloud-information gathering tool. Move the tool to report folder. Call the save cloud information from vsperf. Fixed issues reported by Al. Additional fixes. JIRA: VINEPERF-644 Signed-off-by: Sridhar K. N. Rao Change-Id: I4aea2e52a4c6700f80624f3e1828b74a108e03ba --- tools/os_deploy_tgen/osclients/openstack.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tools/os_deploy_tgen/osclients/openstack.py') diff --git a/tools/os_deploy_tgen/osclients/openstack.py b/tools/os_deploy_tgen/osclients/openstack.py index 58297e6c..4561db51 100644 --- a/tools/os_deploy_tgen/osclients/openstack.py +++ b/tools/os_deploy_tgen/osclients/openstack.py @@ -63,6 +63,7 @@ class OpenStackClient(): if openstack_params['os_insecure']: cloud_config.config['verify'] = False cloud_config.config['cacert'] = None + self.conn = connection.Connection(config=cloud_config) self.keystone_session = cloud_config.get_session() self.nova = cloud_config.get_legacy_client('compute') self.neutron = cloud_config.get_legacy_client('network') -- cgit 1.2.3-korg