Update "auth_url" in install docs

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

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: Ia85189b2d9b197c492a56daf6e9b27e8b2fb69cc
This commit is contained in:
Vu Cong Tuan 2018-05-10 14:40:13 +07:00
parent 3ca7a207f5
commit 62b3bdebd9
1 changed files with 6 additions and 6 deletions

View File

@ -138,7 +138,7 @@ below to the address you get from OpenStack Kingbird endpoint.
To make the Kingbird work normally, you have to edit these configuration
items. The [cache] section is used by kingbird engine to access the quota
information of Nova, Cinder, Neutron in each region, replace the
auth_uri to the keystone service in your environment,
www_authenticate_uri to the keystone service in your environment,
especially if the keystone service is not located in the same node, and
also for the account to access the Nova, Cinder, Neutron in each region,
in the following configuration, user "admin" with password "password" of
@ -148,7 +148,7 @@ each region:
.. code-block:: bash
[cache]
auth_uri = http://127.0.0.1:5000/v3
www_authenticate_uri = http://127.0.0.1:5000/v3
admin_tenant = admin
admin_password = password
admin_username = admin
@ -187,13 +187,13 @@ KeyStone is deployed in multiple regions*
[keystone_authtoken]
signing_dir = /var/cache/kingbird
cafile = /opt/stack/data/ca-bundle.pem
auth_uri = http://127.0.0.1:5000/v3
www_authenticate_uri = http://127.0.0.1:5000/v3
project_domain_name = Default
project_name = service
user_domain_name = Default
password = $kb_svc_pwd
username = $kb_svc_user
auth_url = http://127.0.0.1:35357/v3
auth_url = http://127.0.0.1:5000/v3
auth_type = password
region_name = RegionOne
@ -205,13 +205,13 @@ is "password", then the configuration will look like this:
[keystone_authtoken]
signing_dir = /var/cache/kingbird
cafile = /opt/stack/data/ca-bundle.pem
auth_uri = http://127.0.0.1:5000/v3
www_authenticate_uri = http://127.0.0.1:5000/v3
project_domain_name = Default
project_name = service
user_domain_name = Default
password = password
username = kingbird
auth_url = http://127.0.0.1:35357/v3
auth_url = http://127.0.0.1:5000/v3
auth_type = password
region_name = RegionOne