Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 1 | # compute service |
Jesse Andrews | c2b3cf7 | 2011-10-25 08:52:31 -0700 | [diff] [blame] | 2 | NOVA_REPO=https://github.com/cloudbuilders/nova.git |
Anthony Young | 9c1af10 | 2011-09-28 16:04:06 -0700 | [diff] [blame] | 3 | NOVA_BRANCH=diablo |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 4 | |
Chmouel Boudjnah | 28fa4e8 | 2011-11-01 12:30:55 +0100 | [diff] [blame^] | 5 | # storage service |
| 6 | SWIFT_REPO=https://github.com/openstack/swift.git |
| 7 | SWIFT_BRANCH=diablo |
| 8 | |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 9 | # image catalog service |
Jesse Andrews | c2b3cf7 | 2011-10-25 08:52:31 -0700 | [diff] [blame] | 10 | GLANCE_REPO=https://github.com/cloudbuilders/glance.git |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 11 | GLANCE_BRANCH=diablo |
| 12 | |
| 13 | # unified auth system (manages accounts/tokens) |
Jesse Andrews | c2b3cf7 | 2011-10-25 08:52:31 -0700 | [diff] [blame] | 14 | KEYSTONE_REPO=https://github.com/cloudbuilders/keystone.git |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 15 | KEYSTONE_BRANCH=diablo |
| 16 | |
| 17 | # a websockets/html5 or flash powered VNC console for vm instances |
Jesse Andrews | c2b3cf7 | 2011-10-25 08:52:31 -0700 | [diff] [blame] | 18 | NOVNC_REPO=https://github.com/cloudbuilders/noVNC.git |
Jesse Andrews | f0a4330 | 2011-10-24 10:41:49 -0700 | [diff] [blame] | 19 | NOVNC_BRANCH=diablo |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 20 | |
| 21 | # django powered web control panel for openstack |
Tres Henry | ca85b79 | 2011-10-28 14:00:21 -0700 | [diff] [blame] | 22 | HORIZON_REPO=https://github.com/openstack/horizon.git |
| 23 | HORIZON_BRANCH=stable/diablo |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 24 | |
Tres Henry | ca85b79 | 2011-10-28 14:00:21 -0700 | [diff] [blame] | 25 | # python client library to nova that horizon (and others) use |
Jesse Andrews | c2b3cf7 | 2011-10-25 08:52:31 -0700 | [diff] [blame] | 26 | NOVACLIENT_REPO=https://github.com/rackspace/python-novaclient.git |
Anthony Young | 248221a | 2011-09-27 11:25:18 -0700 | [diff] [blame] | 27 | NOVACLIENT_BRANCH=master |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 28 | |
| 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 Andrews | c2b3cf7 | 2011-10-25 08:52:31 -0700 | [diff] [blame] | 31 | OPENSTACKX_REPO=https://github.com/cloudbuilders/openstackx.git |
Jesse Andrews | 4b16984 | 2011-10-03 22:53:45 -0400 | [diff] [blame] | 32 | OPENSTACKX_BRANCH=diablo |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 33 | |
Anthony Young | 120f486 | 2011-10-14 09:31:09 -0700 | [diff] [blame] | 34 | # Specify a comma-separated list of uec images to download and install into glance. |
| 35 | IMAGE_URLS=http://smoser.brickies.net/ubuntu/ttylinux-uec/ttylinux-uec-amd64-11.2_2.6.35-15_1.tar.gz |
Anthony Young | 0ab1d46 | 2011-10-13 23:03:23 -0700 | [diff] [blame] | 36 | |
Anthony Young | eb5dea6 | 2011-09-28 15:24:57 -0700 | [diff] [blame] | 37 | # allow local overrides of env variables |
| 38 | if [ -f ./localrc ]; then |
| 39 | source ./localrc |
| 40 | fi |