Use identity-internal instead of public endpoint

The discussion on using identity-internval vs the public
identity-api endpoint can be found here:
https://groups.google.com/forum/#!topic/opscode-chef-openstack/an9rydsrC0k

Change-Id: I91f2253b3c471cdd25e025924da2899d732f96b8
Partial-Bug: 1412919
This commit is contained in:
Ken Thomas 2015-02-03 21:20:38 +00:00
parent 8ef48dd064
commit 24a9fd0cd7
1 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,9 @@ platform_options['tempest_packages'].each do |pkg|
end
identity_admin_endpoint = admin_endpoint 'identity-admin'
identity_api_endpoint = internal_endpoint 'identity-api'
# Since this is testing things from the user's perspective,
# use the public identity endpoint
identity_api_endpoint = public_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']