From 4ea1749cd957de7bdd1c96b718d75fa6a08e871c Mon Sep 17 00:00:00 2001 From: Nguyen Van Duc Date: Wed, 18 Jul 2018 15:34:38 +0700 Subject: [PATCH] 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 --- spec/unit/provider/openstack/auth_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/unit/provider/openstack/auth_spec.rb b/spec/unit/provider/openstack/auth_spec.rb index 31008117..e2bc034a 100644 --- a/spec/unit/provider/openstack/auth_spec.rb +++ b/spec/unit/provider/openstack/auth_spec.rb @@ -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