diff options
| author | Nguyen Van Duc <ducnv@vn.fujitsu.com> | 2018-07-18 15:50:18 +0700 |
|---|---|---|
| committer | Duc Nguyen <ducnv@vn.fujitsu.com> | 2018-09-17 04:16:13 +0000 |
| commit | eb4f839ec7c1a5e791d6f798c5efb705d55b1e01 (patch) | |
| tree | 008b8b799cb949d25dd5ad153be916efa11c9e13 | |
| parent | 1b66ad9067cc404ebfdc8569822d226d5bffddd6 (diff) | |
| download | python-openstackclient-eb4f839ec7c1a5e791d6f798c5efb705d55b1e01.tar.gz | |
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: I4faabbb107f912c7ed1cc5d3467ea5a94197d4a0
| -rw-r--r-- | doc/source/cli/man/openstack.rst | 4 | ||||
| -rw-r--r-- | doc/source/configuration/index.rst | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/doc/source/cli/man/openstack.rst b/doc/source/cli/man/openstack.rst index 0745fb7a..64965752 100644 --- a/doc/source/cli/man/openstack.rst +++ b/doc/source/cli/man/openstack.rst @@ -278,14 +278,14 @@ The keys match the :program:`openstack` global options but without the clouds: devstack: auth: - auth_url: http://192.168.122.10:35357/ + auth_url: http://192.168.122.10:5000/ project_name: demo username: demo password: 0penstack region_name: RegionOne ds-admin: auth: - auth_url: http://192.168.122.10:35357/ + auth_url: http://192.168.122.10:5000/ project_name: admin username: admin password: 0penstack diff --git a/doc/source/configuration/index.rst b/doc/source/configuration/index.rst index d2b273d7..b74bb365 100644 --- a/doc/source/configuration/index.rst +++ b/doc/source/configuration/index.rst @@ -61,14 +61,14 @@ The keys match the :program:`openstack` global options but without the clouds: devstack: auth: - auth_url: http://192.168.122.10:35357/ + auth_url: http://192.168.122.10:5000/ project_name: demo username: demo password: 0penstack region_name: RegionOne ds-admin: auth: - auth_url: http://192.168.122.10:35357/ + auth_url: http://192.168.122.10:5000/ project_name: admin username: admin password: 0penstack @@ -121,7 +121,7 @@ domain name as shown in the example below: clouds: devstack: auth: - auth_url: http://192.168.122.10:35357/ + auth_url: http://192.168.122.10:5000/ project_name: demo username: demo password: 0penstack @@ -171,7 +171,7 @@ By setting `log_level` or `log_file` in the configuration clouds: devstack: auth: - auth_url: http://192.168.122.10:35357/ + auth_url: http://192.168.122.10:5000/ project_name: demo username: demo password: 0penstack @@ -182,7 +182,7 @@ By setting `log_level` or `log_file` in the configuration level: info ds-admin: auth: - auth_url: http://192.168.122.10:35357/ + auth_url: http://192.168.122.10:5000/ project_name: admin username: admin password: 0penstack |
