From Fedora Project Wiki

(Created page with "Check that there is a F17-x86_64-cfntools JEOS in glance: glance index Launch the Heat services: sudo systemctl start heat-api-cfn.service sudo systemctl start heat-eng...")
 
No edit summary
Line 1: Line 1:
Check that there is a F17-x86_64-cfntools JEOS in glance:
Check that there is a F17-x86_64-cfntools JEOS in glance:
   glance index
   glance index
Launch the Heat services:
  sudo systemctl start heat-api-cfn.service
  sudo systemctl start heat-engine.service


Launch a Wordpress instance:
Launch a Wordpress instance:

Revision as of 03:07, 25 September 2012

Check that there is a F17-x86_64-cfntools JEOS in glance:

 glance index

Launch a Wordpress instance:

 heat create wordpress --template-url=https://raw.github.com/heat-api/heat/master/templates/WordPress_Single_Instance.template --parameters="InstanceType=m1.xlarge;DBUsername=${USER};DBPassword=verybadpass;KeyName=${USER}_key"

List stacks:

 heat list

Describe the wordpress stack

 heat describe wordpress

Delete the instance when done:

 heat delete wordpress
 heat list