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
This commit is contained in:
Ken Thomas 2015-01-29 23:55:34 +00:00
parent d10511d875
commit 8ef48dd064
1 changed files with 2 additions and 2 deletions

View File

@ -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']