4f6d7b61b3
This adds support for image urls that end in .img.gz or .img. The assumption is that they're a full disk image or a compressed disk image. Some examples: https://cloud-images.ubuntu.com/server/releases/11.10/release/ubuntu-11.10-server-cloudimg-i386-disk1.img http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-rootfs.img.gz http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-disk.img Change-Id: I79b67b461fb02f2403dad3e15f630fa9817eb0db
65 lines
2.4 KiB
Plaintext
65 lines
2.4 KiB
Plaintext
# compute service
|
|
NOVA_REPO=https://github.com/openstack/nova.git
|
|
NOVA_BRANCH=master
|
|
|
|
# storage service
|
|
SWIFT_REPO=https://github.com/openstack/swift.git
|
|
SWIFT_BRANCH=master
|
|
|
|
# swift and keystone integration
|
|
SWIFT_KEYSTONE_REPO=https://github.com/cloudbuilders/swift-keystone2.git
|
|
SWIFT_KEYSTONE_BRANCH=master
|
|
|
|
# image catalog service
|
|
GLANCE_REPO=https://github.com/openstack/glance.git
|
|
GLANCE_BRANCH=master
|
|
|
|
# unified auth system (manages accounts/tokens)
|
|
KEYSTONE_REPO=https://github.com/openstack/keystone.git
|
|
KEYSTONE_BRANCH=stable/diablo
|
|
|
|
# a websockets/html5 or flash powered VNC console for vm instances
|
|
NOVNC_REPO=https://github.com/cloudbuilders/noVNC.git
|
|
NOVNC_BRANCH=master
|
|
|
|
# django powered web control panel for openstack
|
|
HORIZON_REPO=https://github.com/openstack/horizon.git
|
|
HORIZON_BRANCH=master
|
|
|
|
# python client library to nova that horizon (and others) use
|
|
NOVACLIENT_REPO=https://github.com/openstack/python-novaclient.git
|
|
NOVACLIENT_BRANCH=master
|
|
|
|
# openstackx is a collection of extensions to openstack.compute & nova
|
|
# that is *deprecated*. The code is being moved into python-novaclient & nova.
|
|
OPENSTACKX_REPO=https://github.com/cloudbuilders/openstackx.git
|
|
OPENSTACKX_BRANCH=master
|
|
|
|
# quantum service
|
|
QUANTUM_REPO=https://github.com/openstack/quantum
|
|
QUANTUM_BRANCH=master
|
|
|
|
# CI test suite
|
|
CITEST_REPO=https://github.com/openstack/tempest.git
|
|
CITEST_BRANCH=master
|
|
|
|
# Specify a comma-separated list of uec images to download and install into glance.
|
|
# supported urls here are:
|
|
# * "uec-style" images:
|
|
# If the file ends in .tar.gz, uncompress the tarball and and select the first
|
|
# .img file inside it as the image. If present, use "*-vmlinuz*" as the kernel
|
|
# and "*-initrd*" as the ramdisk
|
|
# example: http://cloud-images.ubuntu.com/releases/oneiric/release/ubuntu-11.10-server-cloudimg-amd64.tar.gz
|
|
# * disk image (*.img,*.img.gz)
|
|
# if file ends in .img, then it will be uploaded and registered as a to
|
|
# glance as a disk image. If it ends in .gz, it is uncompressed first.
|
|
# example:
|
|
# http://cloud-images.ubuntu.com/releases/oneiric/release/ubuntu-11.10-server-cloudimg-armel-disk1.img
|
|
# http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-rootfs.img.gz
|
|
IMAGE_URLS=http://smoser.brickies.net/ubuntu/ttylinux-uec/ttylinux-uec-amd64-11.2_2.6.35-15_1.tar.gz
|
|
|
|
# allow local overrides of env variables
|
|
if [ -f ./localrc ]; then
|
|
source ./localrc
|
|
fi
|