What are the differences among different pre-built images

Asked by Kylin CG

The guide on http://docs.openstack.org/developer/heat/getting_started/on_ubuntu.html suggests that pre-built images can be downloaded from http://fedorapeople.org/groups/heat/prebuilt-jeos-images/, and there several versions for each OS, such as F17-x86_64-cfntools-pkg.qcow2, F17-x86_64-cfntools.qcow2 and F17-x86_64-gold.qcow2. What are the differences among them? Some templates supplied by Heat use F17-x86_64-cfntools.qcow2, F17-x86_64-gold.qcow2, but it seems none of them uses the one with -pkg.

Question information

Language:
English Edit question
Status:
Solved
For:
OpenStack Heat Edit question
Assignee:
No assignee Edit question
Solved by:
Kylin CG
Solved:
Last query:
Last reply:
Revision history for this message
Steven Hardy (shardy) said :
#1

Hi the images are built using the process documented in:
http://docs.openstack.org/developer/heat/getting_started/jeos_building.html

Using the oz templates in:
https://github.com/openstack/heat-templates/tree/master/jeos

The "gold" templates do not contain the additional heat-cfntools scripts, which are required for some heat functionality, however we no longer maintain the "gold" tdls, so these images should probably be removed

Likewise the "-pkg" images look to be old images which should probably be removed - I'm not sure exactly what differences there are from the non-pkg images, but we won't be supporting their usage.

If you want to check the image contents, you can use libguestfs, then diff the results for two images:
virt-ls -Rl -a F17-x86_64-cfntools.qcow2 /

I suggest using the F17-x86_64-cfntools.qcow2 image. I'll follow up and get the old images removed soon, and hopefully get some newer images for F18 and newer Ubuntu version uploaded.

Revision history for this message
Kylin CG (kylin7-sg) said :
#2

Hi Steven, thanks very much for your kindly help. It is clear to me now.