stackrc
096fb5a8
 # compute service
e978e7fd
 NOVA_REPO=https://github.com/openstack/nova.git
9c7c9083
 NOVA_BRANCH=master
096fb5a8
 
28fa4e8d
 # storage service
 SWIFT_REPO=https://github.com/openstack/swift.git
9c7c9083
 SWIFT_BRANCH=master
28fa4e8d
 
45c51137
 # swift and keystone integration
 SWIFT_KEYSTONE_REPO=https://github.com/cloudbuilders/swift-keystone2.git
 SWIFT_KEYSTONE_BRANCH=master
 
096fb5a8
 # image catalog service
e978e7fd
 GLANCE_REPO=https://github.com/openstack/glance.git
9c7c9083
 GLANCE_BRANCH=master
096fb5a8
 
 # unified auth system (manages accounts/tokens)
e978e7fd
 KEYSTONE_REPO=https://github.com/openstack/keystone.git
7d954307
 KEYSTONE_BRANCH=master
096fb5a8
 
 # a websockets/html5 or flash powered VNC console for vm instances
c2b3cf7f
 NOVNC_REPO=https://github.com/cloudbuilders/noVNC.git
9c7c9083
 NOVNC_BRANCH=master
096fb5a8
 
 # django powered web control panel for openstack
ca85b799
 HORIZON_REPO=https://github.com/openstack/horizon.git
9c7c9083
 HORIZON_BRANCH=master
096fb5a8
 
ca85b799
 # python client library to nova that horizon (and others) use
38df1228
 NOVACLIENT_REPO=https://github.com/openstack/python-novaclient.git
248221a4
 NOVACLIENT_BRANCH=master
096fb5a8
 
52e631d8
 # python keystone client library to nova that horizon uses
 KEYSTONECLIENT_REPO=https://github.com/openstack/python-keystoneclient
 KEYSTONECLIENT_BRANCH=master
 
1bfa3d53
 # quantum service
 QUANTUM_REPO=https://github.com/openstack/quantum
9c7c9083
 QUANTUM_BRANCH=master
1bfa3d53
 
5a09c922
 # quantum client
 QUANTUM_CLIENT_REPO=https://github.com/openstack/python-quantumclient
 QUANTUM_CLIENT_BRANCH=master
 
608bb12a
 # Tempest test suite
 TEMPEST_REPO=https://github.com/openstack/tempest.git
 TEMPEST_BRANCH=master
b0e57cf3
 
64a90660
 # melange service
 MELANGE_REPO=https://github.com/openstack/melange.git
 MELANGE_BRANCH=master
 
 # python melange client library
 MELANGECLIENT_REPO=https://github.com/openstack/python-melangeclient.git
 MELANGECLIENT_BRANCH=master
 
120f4860
 # Specify a comma-separated list of uec images to download and install into glance.
4f6d7b61
 # supported urls here are:
 #  * "uec-style" images:
 #     If the file ends in .tar.gz, uncompress the tarball and and select the first
 #     .img file inside it as the image.  If present, use "*-vmlinuz*" as the kernel
 #     and "*-initrd*" as the ramdisk
 #     example: http://cloud-images.ubuntu.com/releases/oneiric/release/ubuntu-11.10-server-cloudimg-amd64.tar.gz
 #  * disk image (*.img,*.img.gz)
 #    if file ends in .img, then it will be uploaded and registered as a to
 #    glance as a disk image.  If it ends in .gz, it is uncompressed first.
64a90660
 #    example:
4f6d7b61
 #      http://cloud-images.ubuntu.com/releases/oneiric/release/ubuntu-11.10-server-cloudimg-armel-disk1.img
 #      http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-rootfs.img.gz
3584e555
 #IMAGE_URLS="http://smoser.brickies.net/ubuntu/ttylinux-uec/ttylinux-uec-amd64-11.2_2.6.35-15_1.tar.gz" # old ttylinux-uec image
 #IMAGE_URLS="http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-disk.img" # cirros full disk image
a368218a
 case "$LIBVIRT_TYPE" in
     lxc) # the cirros root disk in the uec tarball is empty, so it will not work for lxc
         IMAGE_URLS="http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-rootfs.img.gz";;
     *)  # otherwise, use the uec style image (with kernel, ramdisk, disk)
         IMAGE_URLS="http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-uec.tar.gz";;
 esac
0ab1d46e
 
eb5dea61
 # allow local overrides of env variables
 if [ -f ./localrc ]; then
     source ./localrc
 fi