blob: a50835a0a76359f1addd6d7301830cbcdf676765 [file] [log] [blame]
Anthony Young096fb5a2011-09-26 13:14:46 -07001# compute service
Vishvananda Ishayae978e7f2011-11-14 10:55:47 -08002NOVA_REPO=https://github.com/openstack/nova.git
3NOVA_BRANCH=stable/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 Boudjnahf7788ac2011-11-03 10:00:06 +01007SWIFT_BRANCH=stable/diablo
Chmouel Boudjnah28fa4e82011-11-01 12:30:55 +01008
Chmouel Boudjnah45c51132011-11-01 19:32:23 +01009# swift and keystone integration
10SWIFT_KEYSTONE_REPO=https://github.com/cloudbuilders/swift-keystone2.git
11SWIFT_KEYSTONE_BRANCH=master
12
Anthony Young096fb5a2011-09-26 13:14:46 -070013# image catalog service
Vishvananda Ishayae978e7f2011-11-14 10:55:47 -080014GLANCE_REPO=https://github.com/openstack/glance.git
15GLANCE_BRANCH=stable/diablo
Anthony Young096fb5a2011-09-26 13:14:46 -070016
17# unified auth system (manages accounts/tokens)
Vishvananda Ishayae978e7f2011-11-14 10:55:47 -080018KEYSTONE_REPO=https://github.com/openstack/keystone.git
19KEYSTONE_BRANCH=stable/diablo
Anthony Young096fb5a2011-09-26 13:14:46 -070020
21# a websockets/html5 or flash powered VNC console for vm instances
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070022NOVNC_REPO=https://github.com/cloudbuilders/noVNC.git
Jesse Andrewsf0a43302011-10-24 10:41:49 -070023NOVNC_BRANCH=diablo
Anthony Young096fb5a2011-09-26 13:14:46 -070024
25# django powered web control panel for openstack
Tres Henryca85b792011-10-28 14:00:21 -070026HORIZON_REPO=https://github.com/openstack/horizon.git
27HORIZON_BRANCH=stable/diablo
Anthony Young096fb5a2011-09-26 13:14:46 -070028
Tres Henryca85b792011-10-28 14:00:21 -070029# python client library to nova that horizon (and others) use
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070030NOVACLIENT_REPO=https://github.com/rackspace/python-novaclient.git
Anthony Young248221a2011-09-27 11:25:18 -070031NOVACLIENT_BRANCH=master
Anthony Young096fb5a2011-09-26 13:14:46 -070032
33# openstackx is a collection of extensions to openstack.compute & nova
34# that is *deprecated*. The code is being moved into python-novaclient & nova.
Jesse Andrewsc2b3cf72011-10-25 08:52:31 -070035OPENSTACKX_REPO=https://github.com/cloudbuilders/openstackx.git
Jesse Andrews4b169842011-10-03 22:53:45 -040036OPENSTACKX_BRANCH=diablo
Anthony Young096fb5a2011-09-26 13:14:46 -070037
Brad Hall1bfa3d52011-10-27 18:18:20 -070038# quantum service
39QUANTUM_REPO=https://github.com/openstack/quantum
Anthony Young9a766992011-11-03 00:23:51 -050040QUANTUM_BRANCH=stable/diablo
Brad Hall1bfa3d52011-10-27 18:18:20 -070041
Anthony Young120f4862011-10-14 09:31:09 -070042# Specify a comma-separated list of uec images to download and install into glance.
43IMAGE_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 -070044
Anthony Youngeb5dea62011-09-28 15:24:57 -070045# allow local overrides of env variables
46if [ -f ./localrc ]; then
47 source ./localrc
48fi