blob: 78479f9b4cf1e8251a5fdeeec7f8317c7c9bcfff [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
Chmouel Boudjnah28fa4e82011-11-01 12:30:55 +01005# storage service
6SWIFT_REPO=https://github.com/openstack/swift.git
Chmouel Boudjnaha03f0052011-11-01 13:08:29 +00007SWIFT_BRANCH=1.4.3
Chmouel Boudjnah28fa4e82011-11-01 12:30:55 +01008
Anthony Young096fb5a2011-09-26 13:14:46 -07009# image catalog service
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070010GLANCE_REPO=https://github.com/cloudbuilders/glance.git
Anthony Young096fb5a2011-09-26 13:14:46 -070011GLANCE_BRANCH=diablo
12
13# unified auth system (manages accounts/tokens)
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070014KEYSTONE_REPO=https://github.com/cloudbuilders/keystone.git
Anthony Young096fb5a2011-09-26 13:14:46 -070015KEYSTONE_BRANCH=diablo
16
17# a websockets/html5 or flash powered VNC console for vm instances
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070018NOVNC_REPO=https://github.com/cloudbuilders/noVNC.git
Jesse Andrewsf0a43302011-10-24 10:41:49 -070019NOVNC_BRANCH=diablo
Anthony Young096fb5a2011-09-26 13:14:46 -070020
21# django powered web control panel for openstack
Tres Henryca85b792011-10-28 14:00:21 -070022HORIZON_REPO=https://github.com/openstack/horizon.git
23HORIZON_BRANCH=stable/diablo
Anthony Young096fb5a2011-09-26 13:14:46 -070024
Tres Henryca85b792011-10-28 14:00:21 -070025# python client library to nova that horizon (and others) use
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070026NOVACLIENT_REPO=https://github.com/rackspace/python-novaclient.git
Anthony Young248221a2011-09-27 11:25:18 -070027NOVACLIENT_BRANCH=master
Anthony Young096fb5a2011-09-26 13:14:46 -070028
29# openstackx is a collection of extensions to openstack.compute & nova
30# that is *deprecated*. The code is being moved into python-novaclient & nova.
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070031OPENSTACKX_REPO=https://github.com/cloudbuilders/openstackx.git
Jesse Andrews4b169842011-10-03 22:53:45 -040032OPENSTACKX_BRANCH=diablo
Anthony Young096fb5a2011-09-26 13:14:46 -070033
Anthony Young120f4862011-10-14 09:31:09 -070034# Specify a comma-separated list of uec images to download and install into glance.
35IMAGE_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 -070036
Anthony Youngeb5dea62011-09-28 15:24:57 -070037# allow local overrides of env variables
38if [ -f ./localrc ]; then
39 source ./localrc
40fi