From 1c0b3d0ce79777bc182579f4cc552a28da1aab5e Mon Sep 17 00:00:00 2001 From: Vu Cong Tuan Date: Fri, 11 May 2018 10:29:37 +0700 Subject: [PATCH] Update "auth_url" Following 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]. In addition, update deprecated "auth_uri" to "www_authenticate_uri", according to [6]. [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 [6] https://review.openstack.org/#/c/508522 Change-Id: I262c3b75f98e3ae85b913a5086c3c5ff5edba8f9 --- doc/source/_static/masakari.conf.sample | 2 +- etc/masakari/masakari.conf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/_static/masakari.conf.sample b/doc/source/_static/masakari.conf.sample index 5566e546..680b2aa0 100644 --- a/doc/source/_static/masakari.conf.sample +++ b/doc/source/_static/masakari.conf.sample @@ -838,7 +838,7 @@ # you're using a versioned v2 endpoint here, then this should *not* be the same # endpoint the service user utilizes for validating tokens, because normal end # users may not be able to reach that endpoint. (string value) -#auth_uri = +#www_authenticate_uri = # API version of the admin Identity API endpoint. (string value) #auth_version = diff --git a/etc/masakari/masakari.conf b/etc/masakari/masakari.conf index 0081e22f..0669d14a 100644 --- a/etc/masakari/masakari.conf +++ b/etc/masakari/masakari.conf @@ -13,8 +13,8 @@ auth_strategy=keystone api_paste_config = /etc/masakari/api-paste.ini [keystone_authtoken] -auth_uri = http://127.0.0.1:5000 -auth_url = http://127.0.0.1:35357 +www_authenticate_uri = http://127.0.0.1:5000 +auth_url = http://127.0.0.1:5000 auth_type = password project_domain_id = default user_domain_id = default