Features/ApplianceTools

From FedoraProject

Jump to: navigation, search

Contents

Appliance Building

Summary

Appliances are pre-installed, pre-configured, system images. This feature consists of a tools and meta-data that make it easier for anyone (ISVs, developers, OEMS, etc) to create and deploy virtual appliances. The two components of this feature are the ACT (Appliance Creation Tool) and the AOS (The Appliance Operating System)

Owner

Current status

current version: appliance-tools-003-4.fc10

Detailed Description

ACT: The Appliance Creation Tool is a tool to create Appliance Images from a kickstart file. This tool uses the liveCD creator API as well as patches to the LIVECD API originally written by Daniel P. Berrange to create a multi-partitioned disk image. These disk images can then be booted in a virtual container such as Xen, KVM, and VMware. This tool will be contained in the applianace-tools package. This package contains tools for building appliance images on Fedora based systems including derived distributions such as RHEL, CentOS and others.

AOS: The AOS is a scaled down version of Fedora with a small footprint containing only the packages necessary to run an appliance. The hardware supported by this spin of Fedora would be limited, primarily focusing on virtual containers such as KVM and VMware. The goal is to create a base that developers can build their applications on top of, only pulling in packages that their software requires. A "start from the bottom and build up" mentality.

This is similar to the concepts of JeOS (Just enough operation system).

See more info on the project at:

http://thincrust.net

Benefit to Fedora

The tooling will:

The proposed AOS spin will:

Scope

Target audience would mainly be developers wanting to quickly develop appliances based off of fedora

Test Plan

Test Appliance-creator tool in appliance tools package

Since rawhide is not fully functional yet, the latest Appliance Tools packages have been built and are available for download at http://thincrust.org/download/. To install and test appliance-tools follow these instructions:

1. First, install F10 from rawhide

2. next, install all prerequisites using yum: *note to use kvm you must be running a full virt box

 yum install libvirt virt-manager libvirt-python python-virtinst qemu kvm virt-viewer

3. next, install the latest versions of appliance-tools and livecd-tools. *note as of this writing these packages are not in the rawhide/testing repo. You will need to manually install these packages to test appliance-creator.

rpm -Uvh http://thincrust.net/download/appliance-tools-003-3.fc10.noarch.rpm \
 http://thincrust.net/download/livecd-tools-018-1.fc10.thincrust.$(uname -i).rpm

4. build the appliance:

 # appliance-creator -n ThinCrust -c /usr/share/appliance-tools/aos-rawhide.ks --cache /var/tmp/act/

5. launch appliance image:

 # virt-image ThinCrust.xml

6. use "virsh list" to see if its running and get the IDNUM

 # virsh list

7. connect to appliance and log in with root/thincrust and verify its running:

 # virt-viewer IDNUM

Test AOS image boots

 1) Download image
 2) Launch image on kvm via virt-image (repeat for X flavors of Fedora)
 3) Launch image on VMware??

User Experience

# wget http://thincrust.org/downloads/thincrust.tar.gz
# tar xvfz thincrust.tar.gz
# virt-image ThinCrust.xml 
 
# appliance-creator -n ThinCrust -c /usr/share/appliance-tools/aos-f9.ks --cache=/var/tmp/livecd/
# virt-image ThinCrust.xml

Dependencies

Contingency Plan

Documentation

Release Notes

Fedora 10 now includes tools which make it easier for anyone (ISVs, developers, OEMS, etc) to create and deploy virtual appliances. These tools are extensions of existing fedora tools, Meta-data, and best practices for appliance development and delivery. With these tools anyone with basic scripting experience can build virtual appliances.

Release Engineering

Building The Distributable Appliance

1.Install all prerequisites using yum: *note to use kvm you must be running a full virt box

 # yum install libvirt virt-manager libvirt-python python-virtinst qemu kvm virt-viewer livecd-tools appliance-tools

2. Download the AOS kicksatrt from http://git.fedorahosted.org/git/?p=spin-kickstarts.git;a=blob_plain;f=fedora-aos.ks

3. As root, build the appliance from the loocation the kickstart file was downloaded.

 # appliance-creator -n fedora-aos -c fedora-aos.ks --cache /var/tmp/act/

4. Tar and Compress the image

 # tar -czvf fedora-aos.tar.gz fedora-aos-sda.raw fedora-aos.xml

5. To test the created file (do this after step 4 to not modify the image by running it)

 # virt-image fedora-aos.xml

6. Use "virsh list" to see if its running and get the IDNUM

 # virsh list fedora-aos

7. Connect to appliance and log in with root (no password) and verify its running:

 # virt-viewer IDNUM

Users Expected Scenario

1. Download the tar.gz from the spins website or a torrent.

2. Unpack the files

 # tar -xzvf fedora-aos.tar.gz 

3. Launch the image

 # virt-image fedora-aos.xml

4. Use "virsh list" to see if its running and get the IDNUM

 # vish list fedora-aos

5. Connect to appliance and log in with root/thincrust and verify its running:

 # virt-viewer IDNUM

Comments and Discussion