From 1e1e2a5bf1e1e36c4ab44e3a43a9500ac6d9c501 Mon Sep 17 00:00:00 2001 From: venkatamahesh Date: Mon, 19 Sep 2016 11:12:09 +0530 Subject: [PATCH] [install] Fix keystone_authtoken and trust sections * Use user_domain_name and project_domain_name instead of IDs * Use trustee_domain_name and trustee_domain_admin_name instead of IDs Change-Id: I30f0173fb9bf68729fa7f45999765970fe1915cb Closes-Bug: #1624989 --- doc/source/install-guide-from-source.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/source/install-guide-from-source.rst b/doc/source/install-guide-from-source.rst index 12db7147f9..b0dbc94cc9 100644 --- a/doc/source/install-guide-from-source.rst +++ b/doc/source/install-guide-from-source.rst @@ -409,9 +409,9 @@ Install and configure components memcached_servers = controller:11211 auth_version = v3 auth_uri = http://controller:5000/v3 - project_domain_id = default + project_domain_name = default project_name = service - user_domain_id = default + user_domain_name = default password = MAGNUM_PASS username = magnum auth_url = http://controller:35357 @@ -419,13 +419,13 @@ Install and configure components [trust] ... - trustee_domain_id = 66e0469de9c04eda9bc368e001676d20 - trustee_domain_admin_id = 529b81cf35094beb9784c6d06c090c2b + trustee_domain_name = magnum + trustee_domain_admin_name = magnum_domain_admin trustee_domain_admin_password = DOMAIN_ADMIN_PASS - ``trustee_domain_id`` is the id of the ``magnum`` domain and - ``trustee_domain_admin_id`` is the id of the ``magnum_domain_admin`` user. - Replace MAGNUM_PASS with the password you chose for the magnum user in the + ``trustee_domain_name`` is the name of the ``magnum`` domain and + ``trustee_domain_admin_name`` is the name of the ``magnum_domain_admin`` + user. Replace MAGNUM_PASS with the password you chose for the magnum user in the Identity service and DOMAIN_ADMIN_PASS with the password you chose for the ``magnum_domain_admin`` user.