blob: 15d73ce7c671ce968eda467d180ee7aacf34cd7e [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
Anthony Young0e65abf2011-09-30 09:24:00 -070019DASH_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
28OPENSTACKX_BRANCH=diablo
29
Anthony Youngeb5dea62011-09-28 15:24:57 -070030# allow local overrides of env variables
31if [ -f ./localrc ]; then
32 source ./localrc
33fi