install-guide: minor fixes on the glance chapter

Use colons where appropriate.
Fix the formatting of code examples.
Small updates to reflect that some elements must be created/modified.

Change-Id: Icd069533e8f47c9f9f99eb1cfbabc3ad1c3ca427
This commit is contained in:
Gauvain Pocentek 2014-04-02 23:09:35 +02:00
parent 717faea967
commit c71fb9748e
2 changed files with 13 additions and 16 deletions

View File

@ -60,15 +60,11 @@
<para os="ubuntu;debian">Edit <para os="ubuntu;debian">Edit
<filename>/etc/glance/glance-api.conf</filename> and <filename>/etc/glance/glance-api.conf</filename> and
<filename>/etc/glance/glance-registry.conf</filename> and <filename>/etc/glance/glance-registry.conf</filename> and
change the <literal>[database]</literal> section.</para> add the <literal>[database]</literal> section at the end of each
file:</para>
<programlisting os="ubuntu;debian" language="ini">... <programlisting os="ubuntu;debian" language="ini">...
[database] [database]
... connection = mysql://glance:GLANCE_DBPASS@<replaceable>controller</replaceable>/glance</programlisting>
# SQLAlchemy connection string for the reference implementation
# registry server. Any valid SQLAlchemy connection string is fine.
# See: http://www.sqlalchemy.org/docs/05/reference/sqlalchemy/connections.html#sqlalchemy.create_engine
connection = mysql://glance:GLANCE_DBPASS@<replaceable>controller</replaceable>/glance
...</programlisting>
</step> </step>
<step os="rhel;centos;fedora;opensuse;sles"> <step os="rhel;centos;fedora;opensuse;sles">
<para>Use the <command>openstack-db</command> command to create <para>Use the <command>openstack-db</command> command to create
@ -80,7 +76,8 @@ connection = mysql://glance:GLANCE_DBPASS@<replaceable>controller</replaceable>/
<para>By default, the Ubuntu packages create an SQLite database. <para>By default, the Ubuntu packages create an SQLite database.
Delete the <filename>glance.sqlite</filename> file created in Delete the <filename>glance.sqlite</filename> file created in
the <filename>/var/lib/glance/</filename> directory so that it the <filename>/var/lib/glance/</filename> directory so that it
does not get used by mistake.</para> does not get used by mistake:</para>
<screen><prompt>#</prompt> <userinput>rm /var/lib/glance/glance.sqlite</userinput></screen>
</step> </step>
<step os="ubuntu"> <step os="ubuntu">
<para>Use the password you created to log in as root and create <para>Use the password you created to log in as root and create
@ -102,7 +99,7 @@ IDENTIFIED BY '<replaceable>GLANCE_DBPASS</replaceable>';</userinput></screen>
Choose a password and specify an email address for the Choose a password and specify an email address for the
<literal>glance</literal> user. Use the <literal>glance</literal> user. Use the
<literal>service</literal> tenant and give the user the <literal>service</literal> tenant and give the user the
<literal>admin</literal> role.</para> <literal>admin</literal> role:</para>
<screen><prompt>$</prompt> <userinput>keystone user-create --name=glance --pass=<replaceable>GLANCE_PASS</replaceable> \ <screen><prompt>$</prompt> <userinput>keystone user-create --name=glance --pass=<replaceable>GLANCE_PASS</replaceable> \
--email=<replaceable>glance@example.com</replaceable></userinput> --email=<replaceable>glance@example.com</replaceable></userinput>
<prompt>$</prompt> <userinput>keystone user-role-add --user=glance --tenant=service --role=admin</userinput></screen> <prompt>$</prompt> <userinput>keystone user-role-add --user=glance --tenant=service --role=admin</userinput></screen>
@ -145,10 +142,9 @@ IDENTIFIED BY '<replaceable>GLANCE_DBPASS</replaceable>';</userinput></screen>
for the <literal>glance</literal> user in the Identity Service.</para> for the <literal>glance</literal> user in the Identity Service.</para>
<substeps os="ubuntu"> <substeps os="ubuntu">
<step> <step>
<para>Add the following keys under the <para>Add or modify the following keys under the
<literal>[keystone_authtoken]</literal> section:</para> <literal>[keystone_authtoken]</literal> section:</para>
<programlisting language="ini">[keystone_authtoken] <programlisting language="ini">[keystone_authtoken]
...
auth_uri = http://<replaceable>controller</replaceable>:5000 auth_uri = http://<replaceable>controller</replaceable>:5000
auth_host = <replaceable>controller</replaceable> auth_host = <replaceable>controller</replaceable>
auth_port = 35357 auth_port = 35357
@ -158,7 +154,7 @@ admin_user = glance
admin_password = <replaceable>GLANCE_PASS</replaceable></programlisting> admin_password = <replaceable>GLANCE_PASS</replaceable></programlisting>
</step> </step>
<step> <step>
<para>Add the following key under the <para>Modify the following key under the
<literal>[paste_deploy]</literal> section:</para> <literal>[paste_deploy]</literal> section:</para>
<programlisting language="ini">[paste_deploy] <programlisting language="ini">[paste_deploy]
... ...
@ -180,7 +176,7 @@ flavor = keystone</programlisting>
</step> </step>
<step os="ubuntu"> <step os="ubuntu">
<para>Restart the <systemitem class="service">glance</systemitem> <para>Restart the <systemitem class="service">glance</systemitem>
service with its new settings.</para> service with its new settings:</para>
<screen><prompt>#</prompt> <userinput>service glance-registry restart</userinput> <screen><prompt>#</prompt> <userinput>service glance-registry restart</userinput>
<prompt>#</prompt> <userinput>service glance-api restart</userinput></screen> <prompt>#</prompt> <userinput>service glance-api restart</userinput></screen>
</step> </step>

View File

@ -149,7 +149,8 @@
<para>Alternatively, the upload to the Image Service can be done without having to use local disk space to store the file, by use of the <parameter>--copy-from</parameter> parameter.</para> <para>Alternatively, the upload to the Image Service can be done without having to use local disk space to store the file, by use of the <parameter>--copy-from</parameter> parameter.</para>
<para>For example:</para> <para>For example:</para>
<screen><prompt>$</prompt> <userinput>glance image-create --name="CirrOS 0.3.1" --disk-format=qcow2 \ <screen><prompt>$</prompt> <userinput>glance image-create --name="CirrOS 0.3.1" --disk-format=qcow2 \
--container-format=bare --is-public=true --copy-from http://cdn.download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-disk.img</userinput> --container-format=bare --is-public=true \
--copy-from http://cdn.download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-disk.img</userinput>
<computeroutput>+------------------+--------------------------------------+ <computeroutput>+------------------+--------------------------------------+
| Property | Value | | Property | Value |
+------------------+--------------------------------------+ +------------------+--------------------------------------+