Fix keystone_authtoken config in docs

The keystone_authtoken configuration in the installatiion documentation
are incorrect.  Updated the documentation to use correct values that
work in devstack for senlin.

Change-Id: I9ee7e6c9d5e8e86dcefd459599ebee5f151a612a
Closes-Bug: #1834515
This commit is contained in:
Duc Truong 2019-06-28 18:10:44 +00:00
parent bc12179412
commit 074ee9f7fe
2 changed files with 18 additions and 12 deletions

View File

@ -187,12 +187,15 @@ Install and configure components
connection = mysql+pymysql://senlin:<MYSQL_SENLIN_PW>@127.0.0.1/senlin?charset=utf8
[keystone_authtoken]
www_authenticate_uri = http://<HOST>:5000/v3
auth_version = 3
identity_uri = http://<HOST>:5000
admin_user = senlin
admin_password = <SENLIN PASSWORD>
admin_tenant_name = service
service_token_roles_required = True
auth_type = password
user_domain_name = Default
project_domain_name = Default
project_name = service
username = senlin
password = <SENLIN_PASSWORD>
www_authenticate_uri = http://<HOST>/identity/v3
auth_url = http://<HOST>/identity
[authentication]
auth_url = http://<HOST>:5000/v3

View File

@ -67,12 +67,15 @@ The most common options to be customized include:
connection = mysql+pymysql://senlin:<MYSQL_SENLIN_PW>@127.0.0.1/senlin?charset=utf8
[keystone_authtoken]
www_authenticate_uri = http://<HOST>:5000/v3
auth_version = 3
identity_uri = http://<HOST>:5000
admin_user = senlin
admin_password = <SENLIN PASSWORD>
admin_tenant_name = service
service_token_roles_required = True
auth_type = password
user_domain_name = Default
project_domain_name = Default
project_name = service
username = senlin
password = <SENLIN_PASSWORD>
www_authenticate_uri = http://<HOST>/identity/v3
auth_url = http://<HOST>/identity
[authentication]
auth_url = http://<HOST>:5000/v3