From 8ef48dd064b387fbabf2ebe502c5cc07de85ebc4 Mon Sep 17 00:00:00 2001 From: Ken Thomas Date: Thu, 29 Jan 2015 23:55:34 +0000 Subject: [PATCH] Use new common specific_endpoint routines Now that admin_endpoint, public_endpoint, and internal_endpoint in the common library are working, these are the changes to use them in the openstack-integration-test recipes. No endpoints are created in these recipes, so no new tests were added. Change-Id: Ib38c9bf9675e688a8a4de7e7e8e04993eba57911 Partial-Bug: 1412919 --- recipes/setup.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/setup.rb b/recipes/setup.rb index 46d48c1..4ac97eb 100644 --- a/recipes/setup.rb +++ b/recipes/setup.rb @@ -35,8 +35,8 @@ platform_options['tempest_packages'].each do |pkg| end end -identity_admin_endpoint = endpoint 'identity-admin' -identity_api_endpoint = endpoint 'identity-api' +identity_admin_endpoint = admin_endpoint 'identity-admin' +identity_api_endpoint = internal_endpoint 'identity-api' bootstrap_token = get_secret 'openstack_identity_bootstrap_token' auth_uri = ::URI.decode identity_admin_endpoint.to_s admin_pass = get_password 'user', node['openstack']['identity']['admin_user']