From 84a87e788b47d5a8fa3565195672fdddd35f4cf0 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 --- functest/opnfv_tests/vnf/ims/orchestra_ims.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'functest/opnfv_tests') diff --git a/functest/opnfv_tests/vnf/ims/orchestra_ims.py b/functest/opnfv_tests/vnf/ims/orchestra_ims.py index d13fe8fe..5c19be09 100755 --- 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