From 07e2518f65291e16d2d37947c130e67ce9424a18 Mon Sep 17 00:00:00 2001 From: Michael Pauls Date: Thu, 23 Mar 2017 11:28:25 +0100 Subject: Fix VIM onboarding Usage openstack client in order to get project id directly Change-Id: Id75dcd594430501152c3ba02a969ac1a2aaaadc5 Signed-off-by: Michael Pauls (cherry picked from commit 84a87e788b47d5a8fa3565195672fdddd35f4cf0) --- functest/opnfv_tests/vnf/ims/orchestra_ims.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/functest/opnfv_tests/vnf/ims/orchestra_ims.py b/functest/opnfv_tests/vnf/ims/orchestra_ims.py index d13fe8fe8..5c19be096 100644 --- a/functest/opnfv_tests/vnf/ims/orchestra_ims.py +++ b/functest/opnfv_tests/vnf/ims/orchestra_ims.py @@ -311,10 +311,16 @@ class ImsVnf(vnf_base.VnfOnBoardingBase): creds = os_utils.get_credentials() self.logger.info("PoP creds: %s" % creds) + project_id = os_utils.get_tenant_id( + os_utils.get_keystone_client(), + creds.get("project_name")) + + self.logger.debug("project id: %s" % project_id) + vim_json = { "name": "vim-instance", "authUrl": creds.get("auth_url"), - "tenant": os.environ.get("OS_PROJECT_ID"), + "tenant": project_id, "username": creds.get("username"), "password": creds.get("password"), "securityGroups": [ -- cgit 1.2.3-korg