diff options
author | Zuul <zuul@review.openstack.org> | 2018-07-17 06:54:26 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2018-07-17 06:54:26 +0000 |
commit | b88f47e5baf0703fb5f178d094540625b414fec5 (patch) | |
tree | 0c3b9ad01762434db4764098fc4a610d6c0fd380 /doc/source | |
parent | caed22c63da12bfb3ab6928a310f9eb5da378f6a (diff) | |
parent | 80a28432d45b01d9fc5f9c18c013cf4bc5a22d3e (diff) | |
download | heat-b88f47e5baf0703fb5f178d094540625b414fec5.tar.gz |
Merge "Add some steps for "Preparing to create a stack""
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/getting_started/create_a_stack.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/source/getting_started/create_a_stack.rst b/doc/source/getting_started/create_a_stack.rst index 82973ba78..002853f3a 100644 --- a/doc/source/getting_started/create_a_stack.rst +++ b/doc/source/getting_started/create_a_stack.rst @@ -33,6 +33,15 @@ This should return an empty line Preparing to create a stack --------------------------- +Download and register the image:: + + $ wget http://cloud.fedoraproject.org/fedora-20.x86_64.qcow2 + $ openstack image create \ + --disk-format=qcow2 \ + --container-format=bare \ + --file=fedora-20.x86_64.qcow2 \ + fedora-20.x86_64 + Your cloud will have different flavors and images available for launching instances, you can discover what is available by running:: |