Merge "Fix keystone URLs in noop tests"
This commit is contained in:
commit
8ae2d6c485
@ -83,11 +83,11 @@ describe manifest do
|
||||
|
||||
it {
|
||||
if Noop.hiera('external_lb', false)
|
||||
url = internal_url
|
||||
url = "#{internal_url}/v3"
|
||||
provider = 'http'
|
||||
else
|
||||
url = 'http://' + Noop.hiera('service_endpoint').to_s + ':10000/;csv'
|
||||
provider = Puppet::Type.type(:haproxy_backend_status).defaultprovider.name
|
||||
provider = Puppet::Type.type(:haproxy_backend_status).defaultprovider.name
|
||||
end
|
||||
should contain_haproxy_backend_status('keystone-public').with(
|
||||
:url => url,
|
||||
@ -97,7 +97,7 @@ describe manifest do
|
||||
|
||||
it {
|
||||
if Noop.hiera('external_lb', false)
|
||||
url = admin_url
|
||||
url = "#{admin_url}/v3"
|
||||
provider = 'http'
|
||||
else
|
||||
url = 'http://' + Noop.hiera('service_endpoint').to_s + ':10000/;csv'
|
||||
|
@ -155,7 +155,7 @@ describe manifest do
|
||||
"Class[heat::keystone::domain]")
|
||||
end
|
||||
if Noop.hiera('external_lb', false)
|
||||
url = "#{admin_auth_protocol}://#{admin_auth_address}:35357/"
|
||||
url = "#{admin_auth_protocol}://#{admin_auth_address}:35357/v3"
|
||||
provider = 'http'
|
||||
else
|
||||
url = 'http://' + Noop.hiera('service_endpoint').to_s + ':10000/;csv'
|
||||
|
Loading…
Reference in New Issue
Block a user