23 lines
751 B
Text
23 lines
751 B
Text
# compute service
|
|
NOVA_REPO=https://github.com/openstack/nova.git
|
|
NOVA_BRANCH=master
|
|
|
|
# image catalog service
|
|
GLANCE_REPO=https://github.com/openstack/glance.git
|
|
GLANCE_BRANCH=master
|
|
|
|
# unified auth system (manages accounts/tokens)
|
|
KEYSTONE_REPO=https://github.com/openstack/keystone.git
|
|
KEYSTONE_BRANCH=stable/diablo
|
|
|
|
# python client library to nova that horizon (and others) use
|
|
NOVACLIENT_REPO=https://github.com/openstack/python-novaclient.git
|
|
NOVACLIENT_BRANCH=master
|
|
|
|
# Specify a comma-separated list of uec images to download and install into glance.
|
|
IMAGE_URLS=http://smoser.brickies.net/ubuntu/ttylinux-uec/ttylinux-uec-amd64-11.2_2.6.35-15_1.tar.gz
|
|
|
|
# allow local overrides of env variables
|
|
if [ -f ./localrc ]; then
|
|
source ./localrc
|
|
fi
|