blob: 9b110a37de014981a4328dbcc5079a8d80eae4e2 [file] [log] [blame]
Anthony Young096fb5a2011-09-26 13:14:46 -07001# compute service
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -07002NOVA_REPO=https://github.com/cloudbuilders/nova.git
Anthony Young9c1af102011-09-28 16:04:06 -07003NOVA_BRANCH=diablo
Anthony Young096fb5a2011-09-26 13:14:46 -07004
5# image catalog service
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -07006GLANCE_REPO=https://github.com/cloudbuilders/glance.git
Anthony Young096fb5a2011-09-26 13:14:46 -07007GLANCE_BRANCH=diablo
8
9# unified auth system (manages accounts/tokens)
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070010KEYSTONE_REPO=https://github.com/cloudbuilders/keystone.git
Anthony Young096fb5a2011-09-26 13:14:46 -070011KEYSTONE_BRANCH=diablo
12
13# a websockets/html5 or flash powered VNC console for vm instances
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070014NOVNC_REPO=https://github.com/cloudbuilders/noVNC.git
Jesse Andrewsf0a43302011-10-24 10:41:49 -070015NOVNC_BRANCH=diablo
Anthony Young096fb5a2011-09-26 13:14:46 -070016
17# django powered web control panel for openstack
Tres Henryca85b792011-10-28 14:00:21 -070018HORIZON_REPO=https://github.com/openstack/horizon.git
19HORIZON_BRANCH=stable/diablo
Anthony Young096fb5a2011-09-26 13:14:46 -070020
Tres Henryca85b792011-10-28 14:00:21 -070021# python client library to nova that horizon (and others) use
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070022NOVACLIENT_REPO=https://github.com/rackspace/python-novaclient.git
Anthony Young248221a2011-09-27 11:25:18 -070023NOVACLIENT_BRANCH=master
Anthony Young096fb5a2011-09-26 13:14:46 -070024
25# openstackx is a collection of extensions to openstack.compute & nova
26# that is *deprecated*. The code is being moved into python-novaclient & nova.
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070027OPENSTACKX_REPO=https://github.com/cloudbuilders/openstackx.git
Jesse Andrews4b169842011-10-03 22:53:45 -040028OPENSTACKX_BRANCH=diablo
Anthony Young096fb5a2011-09-26 13:14:46 -070029
Anthony Young120f4862011-10-14 09:31:09 -070030# Specify a comma-separated list of uec images to download and install into glance.
31IMAGE_URLS=http://smoser.brickies.net/ubuntu/ttylinux-uec/ttylinux-uec-amd64-11.2_2.6.35-15_1.tar.gz
Anthony Young0ab1d462011-10-13 23:03:23 -070032
Anthony Youngeb5dea62011-09-28 15:24:57 -070033# allow local overrides of env variables
34if [ -f ./localrc ]; then
35 source ./localrc
36fi