Update keystone content for Juno

I updated keystone content in the installation guide for Juno
as follows:

1) Added step to manually create '_member_' role because
   source/package no longer creates it automatically.
2) Removed defunct 'log_dir' workaround for Ubuntu.
3) Explicitly created endpoint with 'regionOne' region to avoid
   inconsistent defaults.
4) Recommended enabling verbose logging.
5) Removed prompts specific to MySQL because most distributions
   will use MariaDB.
6) Improved consistency with similar content from other services
   as approved with the installation guide improvements project.

Change-Id: I46a95f9a29bfab4da9961d2393f33ff65c46aec4
This commit is contained in:
Matthew Kassawara
2014-09-15 14:05:38 -05:00
parent be7826a8c4
commit 1496c9b050
3 changed files with 91 additions and 61 deletions

View File

@@ -48,14 +48,17 @@
<para>OpenStack provides three API endpoint variations for each service:
admin, internal, and public. In a production environment, the variants
might reside on separate networks that service different types of users
for security reasons. For simplicity, this configuration uses the
management network for all variations.</para>
for security reasons. Also, OpenStack supports multiple regions for
scalability. For simplicity, this configuration uses the management
network for all endpoint variations and the
<literal>regionOne</literal> region.</para>
<para>Create the API endpoint for the Identity service:</para>
<screen><prompt>$</prompt> <userinput>keystone endpoint-create \
--service-id $(keystone service-list | awk '/ identity / {print $2}') \
--publicurl http://<replaceable>controller</replaceable>:5000/v2.0 \
--internalurl http://<replaceable>controller</replaceable>:5000/v2.0 \
--adminurl http://<replaceable>controller</replaceable>:35357/v2.0</userinput>
--adminurl http://<replaceable>controller</replaceable>:35357/v2.0 \
--region regionOne</userinput>
<computeroutput>+-------------+----------------------------------+
| Property | Value |
+-------------+----------------------------------+