2011-09-26 20:14:46 +00:00
|
|
|
# compute service
|
2011-10-25 15:52:31 +00:00
|
|
|
NOVA_REPO=https://github.com/cloudbuilders/nova.git
|
2011-09-28 23:04:06 +00:00
|
|
|
NOVA_BRANCH=diablo
|
2011-09-26 20:14:46 +00:00
|
|
|
|
|
|
|
# image catalog service
|
2011-10-25 15:52:31 +00:00
|
|
|
GLANCE_REPO=https://github.com/cloudbuilders/glance.git
|
2011-09-26 20:14:46 +00:00
|
|
|
GLANCE_BRANCH=diablo
|
|
|
|
|
|
|
|
# unified auth system (manages accounts/tokens)
|
2011-10-25 15:52:31 +00:00
|
|
|
KEYSTONE_REPO=https://github.com/cloudbuilders/keystone.git
|
2011-09-26 20:14:46 +00:00
|
|
|
KEYSTONE_BRANCH=diablo
|
|
|
|
|
|
|
|
# a websockets/html5 or flash powered VNC console for vm instances
|
2011-10-25 15:52:31 +00:00
|
|
|
NOVNC_REPO=https://github.com/cloudbuilders/noVNC.git
|
2011-10-24 17:41:49 +00:00
|
|
|
NOVNC_BRANCH=diablo
|
2011-09-26 20:14:46 +00:00
|
|
|
|
|
|
|
# django powered web control panel for openstack
|
2011-10-28 21:00:21 +00:00
|
|
|
HORIZON_REPO=https://github.com/openstack/horizon.git
|
|
|
|
HORIZON_BRANCH=stable/diablo
|
2011-09-26 20:14:46 +00:00
|
|
|
|
2011-10-28 21:00:21 +00:00
|
|
|
# python client library to nova that horizon (and others) use
|
2011-10-25 15:52:31 +00:00
|
|
|
NOVACLIENT_REPO=https://github.com/rackspace/python-novaclient.git
|
2011-09-27 18:25:18 +00:00
|
|
|
NOVACLIENT_BRANCH=master
|
2011-09-26 20:14:46 +00:00
|
|
|
|
|
|
|
# openstackx is a collection of extensions to openstack.compute & nova
|
|
|
|
# that is *deprecated*. The code is being moved into python-novaclient & nova.
|
2011-10-25 15:52:31 +00:00
|
|
|
OPENSTACKX_REPO=https://github.com/cloudbuilders/openstackx.git
|
2011-10-04 02:53:45 +00:00
|
|
|
OPENSTACKX_BRANCH=diablo
|
2011-09-26 20:14:46 +00:00
|
|
|
|
2011-10-14 16:31:09 +00: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-10-14 06:03:23 +00:00
|
|
|
|
2011-09-28 22:24:57 +00:00
|
|
|
# allow local overrides of env variables
|
|
|
|
if [ -f ./localrc ]; then
|
|
|
|
source ./localrc
|
|
|
|
fi
|