Replace port 35357 with 5000 for "auth_url"

Based on the change in Keystone Install Guide [1],
this patch replace port 35357 with 5000 for "auth_url".

For more details, please check similar changes which have been done
on other projects: Nova [2], Neutron [3], Cinder [4], Glance [5].

[1] https://review.openstack.org/#/c/541857
[2] https://review.openstack.org/#/c/562812
[3] https://review.openstack.org/#/c/566491
[4] https://review.openstack.org/#/c/565464
[5] https://review.openstack.org/#/c/558932

Change-Id: I63f8e9a00d2b62d1ada53058b79823aa850bbd97
This commit is contained in:
Nguyen Van Duc
2018-07-18 15:34:38 +07:00
parent 9d993c8111
commit 4ea1749cd9

View File

@@ -46,7 +46,7 @@ describe Puppet::Provider::Openstack::Auth do
'OS_PROJECT_NAME' => 'tenant',
'OS_AUTH_URL' => 'http://127.0.0.1:5000',
'OS_TOKEN' => 'token',
'OS_URL' => 'http://127.0.0.1:35357',
'OS_URL' => 'http://127.0.0.1:5000',
'OS_IDENTITY_API_VERSION' => '2.0',
'OS_NOT_VALID' => 'notvalid'
}
@@ -57,7 +57,7 @@ describe Puppet::Provider::Openstack::Auth do
"OS_PASSWORD" => "secret",
"OS_PROJECT_NAME" => "tenant",
"OS_TOKEN" => "token",
"OS_URL" => "http://127.0.0.1:35357",
"OS_URL" => "http://127.0.0.1:5000",
"OS_USERNAME" => "user")
end
end