blob: 871db69767eb046501751633411e2211a895842c [file] [log] [blame]
Anthony Young096fb5a2011-09-26 13:14:46 -07001# compute service
Anthony Young9c1af102011-09-28 16:04:06 -07002NOVA_REPO=https://github.com/cloudbuilders/nova.git
3NOVA_BRANCH=diablo
Anthony Young096fb5a2011-09-26 13:14:46 -07004
5# image catalog service
6GLANCE_REPO=https://github.com/cloudbuilders/glance.git
7GLANCE_BRANCH=diablo
8
9# unified auth system (manages accounts/tokens)
10KEYSTONE_REPO=https://github.com/cloudbuilders/keystone.git
11KEYSTONE_BRANCH=diablo
12
13# a websockets/html5 or flash powered VNC console for vm instances
14NOVNC_REPO=https://github.com/cloudbuilders/noVNC.git
Anthony Young0f6787c2011-09-27 19:39:13 -070015NOVNC_BRANCH=master
Anthony Young096fb5a2011-09-26 13:14:46 -070016
17# django powered web control panel for openstack
18DASH_REPO=https://github.com/cloudbuilders/openstack-dashboard.git
Jesse Andrews4b169842011-10-03 22:53:45 -040019DASH_BRANCH=master
Anthony Young096fb5a2011-09-26 13:14:46 -070020
Anthony Young096fb5a2011-09-26 13:14:46 -070021# python client library to nova that dashboard (and others) use
22NOVACLIENT_REPO=https://github.com/cloudbuilders/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.
27OPENSTACKX_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
Dean Troyerf6fd4dc2011-10-11 20:03:05 -050030# devstack is this collection of scripts
31DEVSTACK_REPO=https://github.com/cloudbuilders/devstack.git
32DEVSTACK_BRANCH=master
33
Anthony Youngeb5dea62011-09-28 15:24:57 -070034# allow local overrides of env variables
35if [ -f ./localrc ]; then
36 source ./localrc
37fi