You can confirm that Heat is running and responding with this command
::
- heat list
+ heat stack-list
This should return an empty line
-----------------
Now lets launch a stack, assuming that DEST is left as the default /opt/stack::
- heat create teststack -f
+ heat stack-create teststack -f
/opt/stack/heat/templates/WordPress_Single_Instance.template -P "InstanceType=m1.large;DBUsername=wp;DBPassword=verybadpassword;KeyName=heat_key;LinuxDistribution=F16"
Which will respond::
~~~~~~~~~~~
List the stacks in your tenant::
- heat list
+ heat stack-list
List stack events
~~~~~~~~~~~~~~~~~
Show detailed state of a stack::
- heat describe teststack
+ heat stack-show teststack
Note: After a few seconds, the stack_status should change from IN_PROGRESS to CREATE_COMPLETE.
Note: The list operation will show no running stack.::
- heat delete teststack
- heat list
+ heat stack-delete teststack
+ heat stack-list