From Fedora Project Wiki

Revision as of 06:07, 25 September 2012 by Sdake (talk | contribs)

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

Setup OpenStack dashboard and perform an initial login.

Setup

These 2 steps are already completed but for reference:

How to test

Install Heat

 sudo yum install -y heat

Configure the Heat database

 sudo heat-db-setup rpm

Configure Keystone

 source ~/keystonerc
 wget https://raw.github.com/heat-api/heat/master/tools/heat-keystone-service-devstack
 chmod +x heat-keystone-service-devstack
 sudo -E ./heat-keystone-service-devstack

Start Heat services

 for svc in heat-api-cfn heat-api-cloudwatch heat-engine heat-metadata
 do
   sudo systemctl start $svc.service
 done

Download JEOS:

 wget https://github.com/downloads/heat-api/prebuilt-jeos-images/F17-x86_64-cfntools.qcow2

Register JEOS with glance:

 sudo mv F17-x86_64-cfntools.qcow2 /var/lib/libvirt/images
 glance add name=F17-x86_64-cfntools is_public=true disk_format=qcow2 container_format=bare < F17-x86_64-cfntools.qcow2

Known Issues

The Heat rpm does not include heat-keystone-service-devstack RHBZ #860105.

Expected Results

No obvious errors were displayed.