61dafb33ed
1. Reordered instructions in the orchestration module installation section 1. Create database. 2. Create identity service credentials. 3. Install packages. 4. Configure service. 5. Synchronize database. 6. Start or restart service. 2. Edited titles and wording for consistency and conventions Change-Id: I7f35274b7cbc99ce0452f4ec5b81d8412ea85b05 Implements: blueprint installation-guide-improvements Co-Authored-By: Matt Kassawara <mkassawara@gmail.com>
48 lines
2.8 KiB
XML
48 lines
2.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<section xml:id="heat-verify" xmlns="http://docbook.org/ns/docbook"
|
|
xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0">
|
|
<title>Verify operation</title>
|
|
<para>This section describes how to verify operation of the Orchestration
|
|
module (heat).</para>
|
|
<procedure>
|
|
<step>
|
|
<para>Source the <literal>demo</literal> tenant credentials:</para>
|
|
<screen><prompt>$</prompt> <userinput>source demo-openrc.sh</userinput></screen>
|
|
</step>
|
|
<step>
|
|
<para>The Orchestration module uses templates to describe stacks. To learn
|
|
about the template language, see <link
|
|
xlink:href="http://docs.openstack.org/developer/heat/template_guide/index.html"
|
|
>the Template Guide</link> in the <link
|
|
xlink:href="http://docs.openstack.org/developer/heat/">Heat developer
|
|
documentation</link>.</para>
|
|
<para>Create a test template in the <filename>test-stack.yml</filename>
|
|
file with the following content:</para>
|
|
<programlisting language="yml"><xi:include parse="text" href="samples/test-stack.yml"/></programlisting>
|
|
</step>
|
|
<step>
|
|
<para>Use the <command>heat stack-create</command> command to create a
|
|
stack from the template:</para>
|
|
<screen><prompt>$</prompt> <userinput>NET_ID=$(nova net-list | awk '/ demo-net / { print $2 }')</userinput>
|
|
<prompt>$</prompt> <userinput>heat stack-create -f test-stack.yml \
|
|
-P "ImageID=cirros-0.3.2-x86_64;NetID=$NET_ID" testStack</userinput>
|
|
<computeroutput>+--------------------------------------+------------+--------------------+----------------------+
|
|
| id | stack_name | stack_status | creation_time |
|
|
+--------------------------------------+------------+--------------------+----------------------+
|
|
| 477d96b4-d547-4069-938d-32ee990834af | testStack | CREATE_IN_PROGRESS | 2014-04-06T15:11:01Z |
|
|
+--------------------------------------+------------+--------------------+----------------------+</computeroutput></screen>
|
|
</step>
|
|
<step>
|
|
<para>Use the <command>heat stack-list</command> command to verify
|
|
successful creation of the stack:</para>
|
|
<screen><prompt>$</prompt> <userinput>heat stack-list</userinput>
|
|
<computeroutput>+--------------------------------------+------------+-----------------+----------------------+
|
|
| id | stack_name | stack_status | creation_time |
|
|
+--------------------------------------+------------+-----------------+----------------------+
|
|
| 477d96b4-d547-4069-938d-32ee990834af | testStack | CREATE_COMPLETE | 2014-04-06T15:11:01Z |
|
|
+--------------------------------------+------------+-----------------+----------------------+</computeroutput></screen>
|
|
</step>
|
|
</procedure>
|
|
</section>
|