Skip to content

Fast Ubuntu Cloud Image creation on libvirt

License

Notifications You must be signed in to change notification settings

melodya000/downburst

 
 

Repository files navigation

Downburst -- fast Ubuntu Cloud image creation on libvirt

Downburst is a tool for quickly creating virtual machines on libvirt. It uses Ubuntu's Cloud Images and qcow2 copy-on-write clones to make a VM creation practically instantaneous, customizing them at boot time with cloud-init.

For more information on Ubuntu Cloud Images, please refer to:

Installation

You can install Downburst like any other Python package, but it also comes with a convenient bootstrap script that sets it up in a virtual environment under the source directory. Just run:

git clone https://github.com/ceph/downburst.git
cd downburst
./bootstrap

And from there on, use:

./virtualenv/bin/downburst ARGS..

You can also symlink that to e.g. ~/bin/.

Usage

You need to give a unique name to your vm. This will become the hostname of the vm, and the libvirt domain name. Run:

downburst -c URI create NAME

If this tool is not being run on a machine on the test cluster used by the Red Hat Ceph development and quality assurance teams, then you should pass the --nokey option to not install the default ssh key to the created guest's authorized_hosts file.

downburst -c URI create NAME --nokey

The URI is the alias set in uri_aliases in ~/.config/libvirt/libvirt.conf. Example:

uri_aliases = [
    'vercoi01=qemu+ssh://ubuntu@vercoi01.front.sepia.ceph.com/system?no_tty=1',
    'vercoi02=qemu+ssh://ubuntu@vercoi02.front.sepia.ceph.com/system?no_tty=1',
    'vercoi03=qemu+ssh://ubuntu@vercoi03.front.sepia.ceph.com/system?no_tty=1',
    'vercoi04=qemu+ssh://ubuntu@vercoi04.front.sepia.ceph.com/system?no_tty=1',
    'vercoi05=qemu+ssh://ubuntu@vercoi05.front.sepia.ceph.com/system?no_tty=1',
    'vercoi06=qemu+ssh://ubuntu@vercoi06.front.sepia.ceph.com/system?no_tty=1',
    'vercoi07=qemu+ssh://ubuntu@vercoi07.front.sepia.ceph.com/system?no_tty=1',
    'vercoi08=qemu+ssh://ubuntu@vercoi08.front.sepia.ceph.com/system?no_tty=1',
    'senta01=qemu+ssh://ubuntu@senta01.front.sepia.ceph.com/system?no_tty=1',
    'senta02=qemu+ssh://ubuntu@senta02.front.sepia.ceph.com/system?no_tty=1',
    'senta03=qemu+ssh://ubuntu@senta03.front.sepia.ceph.com/system?no_tty=1',
    'senta04=qemu+ssh://ubuntu@senta04.front.sepia.ceph.com/system?no_tty=1',
    ]

You can delete a guest with (use caution):

downburst -c URI destroy NAME

By default, your local SSH public key (grabbed from ~/.ssh/id_rsa.pub) is authorized to log in as ubuntu.

You can also pass in EC2-style meta-data and user-data snippets; if you repeat the argument, the files will be merged:

downburst create --meta-data=FILE.meta.yaml \
  --user-data=FILE.user.yaml NAME

See doc/examples/ for ideas on meta-data and user-data usage, and explore the Ubuntu links above.

Valid Downburst options in meta yaml with their defaults if undefined:

disk-size: (disk space)
Default 10G. Example: 20G
additional-disks: (number of additional drives for the guest)
Default 0. Example: 5 (for 5 additional drives)
additional-disks-size: (Size of the additional disks)
Default 10G. Example: 100G
ram: (ram amount)
Default 512M. Example: 2G
cpu: (cpu/core count)
Default 1. Example 4
networks: (what nics/networks/mac addresses)::
Default Nat. Example:
  • source: front mac: 52:54:00:5a:aa:ee
distro: (distro type)
Default ubuntu. Example centos
distroversion: (distro version)
Default (if ubuntu) "12.04". Example "12.10"
arch: (Image architecture)
Default "amd64, can be "i386" or "amd64/x86_64"

Distro/distroversion/arch can also be set during command line creation with --distro=value or --distroversion=value or --arch=value

All available distributions/versions can be listed by running:

downburst list

Static SSH key generation

Downburst also includes a utility to create static SSH keys, for when you want to delete and recreate the vm repeatedly, but not have SSH complain all the time.

To set it up, run this once:

downburst gen-ssh-key >NAME.user.yaml

And from there on, recreate the vm (after deleting it) with:

downburst create --user-data=NAME.user.yaml NAME

Adding new images

Ubuntu images are fetched from Canonical themselves, so they shouldn't need any special attention.

Here is the process we recently followed (on download.ceph.com) for adding CentOS 7.2:

curl -O http://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud-1511.qcow2.xz
xzcat CentOS-7-x86_64-GenericCloud-1511.qcow2.xz > repos/cloudinit/centos-7.2-20151214-cloudimg-amd64.img
sha512sum repos/cloudinit/centos-7.2-20151214-cloudimg-amd64.img | cut -d' ' -f1 > repos/cloudinit/centos-7.2-20151214-cloudimg-amd64.img.sha512

No modification to the image - beyond decompression and renaming - was necessary.

About

Fast Ubuntu Cloud Image creation on libvirt

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 98.6%
  • Shell 1.4%