Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 1 | # compute service |
Anthony Young | 9c1af10 | 2011-09-28 16:04:06 -0700 | [diff] [blame] | 2 | NOVA_REPO=https://github.com/cloudbuilders/nova.git |
| 3 | NOVA_BRANCH=diablo |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 4 | |
| 5 | # image catalog service |
| 6 | GLANCE_REPO=https://github.com/cloudbuilders/glance.git |
| 7 | GLANCE_BRANCH=diablo |
| 8 | |
| 9 | # unified auth system (manages accounts/tokens) |
| 10 | KEYSTONE_REPO=https://github.com/cloudbuilders/keystone.git |
| 11 | KEYSTONE_BRANCH=diablo |
| 12 | |
| 13 | # a websockets/html5 or flash powered VNC console for vm instances |
| 14 | NOVNC_REPO=https://github.com/cloudbuilders/noVNC.git |
Anthony Young | 0f6787c | 2011-09-27 19:39:13 -0700 | [diff] [blame] | 15 | NOVNC_BRANCH=master |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 16 | |
| 17 | # django powered web control panel for openstack |
| 18 | DASH_REPO=https://github.com/cloudbuilders/openstack-dashboard.git |
Jesse Andrews | 4b16984 | 2011-10-03 22:53:45 -0400 | [diff] [blame] | 19 | DASH_BRANCH=master |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 20 | |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 21 | # python client library to nova that dashboard (and others) use |
| 22 | NOVACLIENT_REPO=https://github.com/cloudbuilders/python-novaclient.git |
Anthony Young | 248221a | 2011-09-27 11:25:18 -0700 | [diff] [blame] | 23 | NOVACLIENT_BRANCH=master |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 24 | |
| 25 | # openstackx is a collection of extensions to openstack.compute & nova |
| 26 | # that is *deprecated*. The code is being moved into python-novaclient & nova. |
| 27 | OPENSTACKX_REPO=https://github.com/cloudbuilders/openstackx.git |
Jesse Andrews | 4b16984 | 2011-10-03 22:53:45 -0400 | [diff] [blame] | 28 | OPENSTACKX_BRANCH=diablo |
Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 29 | |
Anthony Young | 120f486 | 2011-10-14 09:31:09 -0700 | [diff] [blame^] | 30 | # Specify a comma-separated list of uec images to download and install into glance. |
| 31 | 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] | 32 | |
Anthony Young | eb5dea6 | 2011-09-28 15:24:57 -0700 | [diff] [blame] | 33 | # allow local overrides of env variables |
| 34 | if [ -f ./localrc ]; then |
| 35 | source ./localrc |
| 36 | fi |