53 lines
1.7 KiB
Plaintext
Raw Normal View History

2011-09-26 13:14:46 -07:00
# compute service
2011-11-14 10:55:47 -08:00
NOVA_REPO=https://github.com/openstack/nova.git
NOVA_BRANCH=stable/diablo
2011-09-26 13:14:46 -07:00
# storage service
SWIFT_REPO=https://github.com/openstack/swift.git
2011-11-03 10:00:06 +01:00
SWIFT_BRANCH=stable/diablo
2011-11-01 19:32:23 +01:00
# swift and keystone integration
SWIFT_KEYSTONE_REPO=https://github.com/cloudbuilders/swift-keystone2.git
SWIFT_KEYSTONE_BRANCH=master
2011-09-26 13:14:46 -07:00
# image catalog service
2011-11-14 10:55:47 -08:00
GLANCE_REPO=https://github.com/openstack/glance.git
GLANCE_BRANCH=stable/diablo
2011-09-26 13:14:46 -07:00
# unified auth system (manages accounts/tokens)
2011-11-14 10:55:47 -08:00
KEYSTONE_REPO=https://github.com/openstack/keystone.git
KEYSTONE_BRANCH=stable/diablo
2011-09-26 13:14:46 -07:00
# a websockets/html5 or flash powered VNC console for vm instances
NOVNC_REPO=https://github.com/cloudbuilders/noVNC.git
2011-10-24 10:41:49 -07:00
NOVNC_BRANCH=diablo
2011-09-26 13:14:46 -07:00
# django powered web control panel for openstack
2011-10-28 14:00:21 -07:00
HORIZON_REPO=https://github.com/openstack/horizon.git
HORIZON_BRANCH=stable/diablo
2011-09-26 13:14:46 -07:00
2011-10-28 14:00:21 -07:00
# python client library to nova that horizon (and others) use
NOVACLIENT_REPO=https://github.com/openstack/python-novaclient.git
2011-09-27 11:25:18 -07:00
NOVACLIENT_BRANCH=master
2011-09-26 13:14:46 -07:00
# 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
2011-10-03 22:53:45 -04:00
OPENSTACKX_BRANCH=diablo
2011-09-26 13:14:46 -07:00
2011-10-27 18:18:20 -07:00
# quantum service
QUANTUM_REPO=https://github.com/openstack/quantum
QUANTUM_BRANCH=stable/diablo
2011-10-27 18:18:20 -07:00
2011-11-04 12:13:43 -05:00
# CI test suite
CITEST_REPO=https://github.com/openstack/openstack-integration-tests.git
CITEST_BRANCH=master
2011-10-14 09:31:09 -07:00
# Specify a comma-separated list of uec images to download and install into glance.
IMAGE_URLS=http://smoser.brickies.net/ubuntu/ttylinux-uec/ttylinux-uec-amd64-11.2_2.6.35-15_1.tar.gz
2011-09-28 15:24:57 -07:00
# allow local overrides of env variables
if [ -f ./localrc ]; then
source ./localrc
fi