Merge "Add heat stack sample directly into the programlisting"

This commit is contained in:
Jenkins 2015-02-05 14:22:20 +00:00 committed by Gerrit Code Review
commit 80735a5771
2 changed files with 30 additions and 27 deletions

View File

@ -1,26 +0,0 @@
heat_template_version: 2013-05-23
description: Test Template
parameters:
ImageID:
type: string
description: Image use to boot a server
NetID:
type: string
description: Network ID for the server
resources:
server1:
type: OS::Nova::Server
properties:
name: "Test server"
image: { get_param: ImageID }
flavor: "m1.tiny"
networks:
- network: { get_param: NetID }
outputs:
server1_private_ip:
description: IP address of the server in the private network
value: { get_attr: [ server1, first_address ] }

View File

@ -21,7 +21,36 @@
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>
<programlisting language="yml">heat_template_version: 2014-10-16
description: A simple server.
parameters:
ImageID:
type: string
description: Image use to boot a server
NetID:
type: string
description: Network ID for the server
resources:
ImageID:
type: string
description: Image use to boot a server
NetID:
type: string
description: Network ID for the server
server:
type: OS::Nova::Server
properties:
image: { get_param: ImageID }
flavor: m1.tiny
networks:
- network: { get_param: NetID }
outputs:
private_ip:
description: IP address of the server in the private network
value: { get_attr: [ server, first_address ] }</programlisting>
</step>
<step>
<para>Use the <command>heat stack-create</command> command to create a