| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 1 | # stackrc | 
|  | 2 | # | 
| Dean Troyer | 0bd2410 | 2012-03-08 00:33:54 -0600 | [diff] [blame] | 3 | # Find the other rc files | 
|  | 4 | RC_DIR=$(cd $(dirname "$BASH_SOURCE") && pwd) | 
|  | 5 |  | 
| Dean Troyer | 1214d9d | 2012-07-06 09:39:07 -0500 | [diff] [blame] | 6 | # Destination path for installation | 
|  | 7 | DEST=/opt/stack | 
|  | 8 |  | 
| Chmouel Boudjnah | 8da5656 | 2012-03-09 14:21:40 +0000 | [diff] [blame] | 9 | # Specify which services to launch.  These generally correspond to | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 10 | # screen tabs. To change the default list, use the ``enable_service`` and | 
|  | 11 | # ``disable_service`` functions in ``localrc``. | 
|  | 12 | # For example, to enable Swift add this to ``localrc``: | 
|  | 13 | # enable_service swift | 
| Chmouel Boudjnah | c4cd414 | 2012-06-27 11:01:40 +0200 | [diff] [blame] | 14 | # | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 15 | # And to disable Cinder and use Nova Volumes instead: | 
|  | 16 | # disable_service c-api c-sch c-vol cinder | 
|  | 17 | # enable_service n-vol | 
| John Griffith | d586e1c | 2012-07-11 13:21:08 -0600 | [diff] [blame] | 18 | ENABLED_SERVICES=g-api,g-reg,key,n-api,n-crt,n-obj,n-cpu,n-net,cinder,c-sch,c-api,c-vol,n-sch,n-novnc,n-xvnc,n-cauth,horizon,mysql,rabbit | 
| Chmouel Boudjnah | 8da5656 | 2012-03-09 14:21:40 +0000 | [diff] [blame] | 19 |  | 
| Dean Troyer | 67787e6 | 2012-05-02 11:48:15 -0500 | [diff] [blame] | 20 | # Set the default Nova APIs to enable | 
| Andrew Laski | 6e7e1c9 | 2012-10-31 16:11:37 -0400 | [diff] [blame] | 21 | NOVA_ENABLED_APIS=ec2,osapi_compute,metadata | 
| Dean Troyer | 67787e6 | 2012-05-02 11:48:15 -0500 | [diff] [blame] | 22 |  | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 23 | # Repositories | 
|  | 24 | # ------------ | 
|  | 25 |  | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 26 | # Base GIT Repo URL | 
|  | 27 | # Another option is http://review.openstack.org/p | 
|  | 28 | GIT_BASE=https://github.com | 
|  | 29 |  | 
| John H. Tran | 9336164 | 2012-07-26 11:22:05 -0700 | [diff] [blame] | 30 | # metering service | 
|  | 31 | CEILOMETER_REPO=https://github.com/stackforge/ceilometer.git | 
|  | 32 | CEILOMETER_BRANCH=master | 
|  | 33 |  | 
| Dean Troyer | 67787e6 | 2012-05-02 11:48:15 -0500 | [diff] [blame] | 34 | # volume service | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 35 | CINDER_REPO=${GIT_BASE}/openstack/cinder | 
| Dean Troyer | 67787e6 | 2012-05-02 11:48:15 -0500 | [diff] [blame] | 36 | CINDER_BRANCH=master | 
|  | 37 |  | 
|  | 38 | # volume client | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 39 | CINDERCLIENT_REPO=${GIT_BASE}/openstack/python-cinderclient | 
| Dean Troyer | 67787e6 | 2012-05-02 11:48:15 -0500 | [diff] [blame] | 40 | CINDERCLIENT_BRANCH=master | 
|  | 41 |  | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 42 | # compute service | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 43 | NOVA_REPO=${GIT_BASE}/openstack/nova.git | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 44 | NOVA_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 45 |  | 
| Chmouel Boudjnah | 28fa4e8 | 2011-11-01 12:30:55 +0100 | [diff] [blame] | 46 | # storage service | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 47 | SWIFT_REPO=${GIT_BASE}/openstack/swift.git | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 48 | SWIFT_BRANCH=master | 
| Joe Gordon | 42b1aa9 | 2012-05-24 14:11:01 -0700 | [diff] [blame] | 49 | SWIFT3_REPO=https://github.com/fujita/swift3.git | 
|  | 50 | SWIFT3_BRANCH=master | 
|  | 51 |  | 
| Chmouel Boudjnah | fda9df8 | 2012-05-22 10:27:08 +0000 | [diff] [blame] | 52 | # python swift client library | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 53 | SWIFTCLIENT_REPO=${GIT_BASE}/openstack/python-swiftclient | 
| Chmouel Boudjnah | fda9df8 | 2012-05-22 10:27:08 +0000 | [diff] [blame] | 54 | SWIFTCLIENT_BRANCH=master | 
|  | 55 |  | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 56 | # image catalog service | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 57 | GLANCE_REPO=${GIT_BASE}/openstack/glance.git | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 58 | GLANCE_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 59 |  | 
| Dean Troyer | 4549525 | 2012-04-13 13:16:38 -0500 | [diff] [blame] | 60 | # python glance client library | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 61 | GLANCECLIENT_REPO=${GIT_BASE}/openstack/python-glanceclient | 
| Dean Troyer | 4549525 | 2012-04-13 13:16:38 -0500 | [diff] [blame] | 62 | GLANCECLIENT_BRANCH=master | 
|  | 63 |  | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 64 | # unified auth system (manages accounts/tokens) | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 65 | KEYSTONE_REPO=${GIT_BASE}/openstack/keystone.git | 
| Dean Troyer | 6a3f607 | 2012-02-16 16:31:24 -0600 | [diff] [blame] | 66 | KEYSTONE_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 67 |  | 
|  | 68 | # a websockets/html5 or flash powered VNC console for vm instances | 
| Anthony Young | 220d938 | 2012-05-04 10:19:44 -0700 | [diff] [blame] | 69 | NOVNC_REPO=https://github.com/kanaka/noVNC.git | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 70 | NOVNC_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 71 |  | 
|  | 72 | # django powered web control panel for openstack | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 73 | HORIZON_REPO=${GIT_BASE}/openstack/horizon.git | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 74 | HORIZON_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 75 |  | 
| Tres Henry | ca85b79 | 2011-10-28 14:00:21 -0700 | [diff] [blame] | 76 | # python client library to nova that horizon (and others) use | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 77 | NOVACLIENT_REPO=${GIT_BASE}/openstack/python-novaclient.git | 
| Anthony Young | 248221a | 2011-09-27 11:25:18 -0700 | [diff] [blame] | 78 | NOVACLIENT_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 79 |  | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 80 | # consolidated openstack python client | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 81 | OPENSTACKCLIENT_REPO=${GIT_BASE}/openstack/python-openstackclient.git | 
| Andrew Bogott | 77a4e3a | 2012-05-01 00:07:29 -0500 | [diff] [blame] | 82 | OPENSTACKCLIENT_BRANCH=master | 
|  | 83 |  | 
| Anthony Young | 52e631d | 2011-12-27 22:22:14 -0800 | [diff] [blame] | 84 | # python keystone client library to nova that horizon uses | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 85 | KEYSTONECLIENT_REPO=${GIT_BASE}/openstack/python-keystoneclient | 
| Anthony Young | 52e631d | 2011-12-27 22:22:14 -0800 | [diff] [blame] | 86 | KEYSTONECLIENT_BRANCH=master | 
|  | 87 |  | 
| Brad Hall | 1bfa3d5 | 2011-10-27 18:18:20 -0700 | [diff] [blame] | 88 | # quantum service | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 89 | QUANTUM_REPO=${GIT_BASE}/openstack/quantum | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 90 | QUANTUM_BRANCH=master | 
| Brad Hall | 1bfa3d5 | 2011-10-27 18:18:20 -0700 | [diff] [blame] | 91 |  | 
| Dave Lapsley | 5a09c92 | 2012-01-25 17:22:15 -0500 | [diff] [blame] | 92 | # quantum client | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 93 | QUANTUM_CLIENT_REPO=${GIT_BASE}/openstack/python-quantumclient | 
| Dave Lapsley | 5a09c92 | 2012-01-25 17:22:15 -0500 | [diff] [blame] | 94 | QUANTUM_CLIENT_BRANCH=master | 
|  | 95 |  | 
| Dean Troyer | 608bb12 | 2012-01-10 14:43:17 -0600 | [diff] [blame] | 96 | # Tempest test suite | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 97 | TEMPEST_REPO=${GIT_BASE}/openstack/tempest.git | 
| Dean Troyer | 608bb12 | 2012-01-10 14:43:17 -0600 | [diff] [blame] | 98 | TEMPEST_BRANCH=master | 
| Dean Troyer | b0e57cf | 2011-11-04 12:13:43 -0500 | [diff] [blame] | 99 |  | 
| Steve Baker | bfdad75 | 2012-08-18 09:00:42 +1200 | [diff] [blame] | 100 | # heat service | 
|  | 101 | HEAT_REPO=${GIT_BASE}/heat-api/heat.git | 
|  | 102 | HEAT_BRANCH=master | 
|  | 103 |  | 
| Steve Baker | 32761a4 | 2012-11-05 09:57:57 +1300 | [diff] [blame] | 104 | # python heat client library | 
|  | 105 | HEATCLIENT_REPO=${GIT_BASE}/heat-api/python-heatclient.git | 
|  | 106 | HEATCLIENT_BRANCH=master | 
|  | 107 |  | 
| Yoshihiro Kaneko | 602cf9b | 2012-07-23 06:27:36 +0000 | [diff] [blame] | 108 | # ryu service | 
|  | 109 | RYU_REPO=https://github.com/osrg/ryu.git | 
|  | 110 | RYU_BRANCH=master | 
|  | 111 |  | 
| Devananda van der Veen | c0c6f00 | 2012-07-06 17:49:12 -0700 | [diff] [blame] | 112 | # Nova hypervisor configuration.  We default to libvirt with **kvm** but will | 
|  | 113 | # drop back to **qemu** if we are unable to load the kvm module.  ``stack.sh`` can | 
|  | 114 | # also install an **LXC** or **OpenVZ** based system. | 
|  | 115 | VIRT_DRIVER=${VIRT_DRIVER:-libvirt} | 
|  | 116 | LIBVIRT_TYPE=${LIBVIRT_TYPE:-kvm} | 
|  | 117 |  | 
|  | 118 | # allow local overrides of env variables | 
|  | 119 | if [ -f $RC_DIR/localrc ]; then | 
|  | 120 | source $RC_DIR/localrc | 
|  | 121 | fi | 
|  | 122 |  | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 123 | # Specify a comma-separated list of UEC images to download and install into glance. | 
| Scott Moser | 4f6d7b6 | 2011-12-08 16:22:51 -0500 | [diff] [blame] | 124 | # supported urls here are: | 
|  | 125 | #  * "uec-style" images: | 
|  | 126 | #     If the file ends in .tar.gz, uncompress the tarball and and select the first | 
|  | 127 | #     .img file inside it as the image.  If present, use "*-vmlinuz*" as the kernel | 
|  | 128 | #     and "*-initrd*" as the ramdisk | 
|  | 129 | #     example: http://cloud-images.ubuntu.com/releases/oneiric/release/ubuntu-11.10-server-cloudimg-amd64.tar.gz | 
|  | 130 | #  * disk image (*.img,*.img.gz) | 
|  | 131 | #    if file ends in .img, then it will be uploaded and registered as a to | 
|  | 132 | #    glance as a disk image.  If it ends in .gz, it is uncompressed first. | 
| Jason Kölker | 64a9066 | 2012-01-23 11:17:27 -0600 | [diff] [blame] | 133 | #    example: | 
| Scott Moser | 4f6d7b6 | 2011-12-08 16:22:51 -0500 | [diff] [blame] | 134 | #      http://cloud-images.ubuntu.com/releases/oneiric/release/ubuntu-11.10-server-cloudimg-armel-disk1.img | 
|  | 135 | #      http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-rootfs.img.gz | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 136 | #  * OpenVZ image: | 
|  | 137 | #    OpenVZ uses its own format of image, and does not support UEC style images | 
|  | 138 |  | 
| Scott Moser | 3584e55 | 2011-12-08 16:23:27 -0500 | [diff] [blame] | 139 | #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 | 
|  | 140 | #IMAGE_URLS="http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-disk.img" # cirros full disk image | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 141 |  | 
|  | 142 | # Set default image based on ``VIRT_DRIVER`` and ``LIBVIRT_TYPE``, either of | 
| Nachi Ueno | fda946e | 2012-10-24 17:26:02 -0700 | [diff] [blame] | 143 | # which may be set in ``localrc``.  Also allow ``DEFAULT_IMAGE_NAME`` and | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 144 | # ``IMAGE_URLS`` to be set directly in ``localrc``. | 
| Devananda van der Veen | c0c6f00 | 2012-07-06 17:49:12 -0700 | [diff] [blame] | 145 | case "$VIRT_DRIVER" in | 
| Nachi Ueno | fda946e | 2012-10-24 17:26:02 -0700 | [diff] [blame] | 146 | openvz) | 
| Devananda van der Veen | c0c6f00 | 2012-07-06 17:49:12 -0700 | [diff] [blame] | 147 | DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-ubuntu-11.10-x86_64} | 
|  | 148 | IMAGE_URLS=${IMAGE_URLS:-"http://download.openvz.org/template/precreated/ubuntu-11.10-x86_64.tar.gz"};; | 
|  | 149 | libvirt) | 
|  | 150 | case "$LIBVIRT_TYPE" in | 
|  | 151 | lxc) # the cirros root disk in the uec tarball is empty, so it will not work for lxc | 
|  | 152 | DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-0.3.0-x86_64-rootfs} | 
|  | 153 | IMAGE_URLS=${IMAGE_URLS:-"http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-rootfs.img.gz"};; | 
|  | 154 | *) # otherwise, use the uec style image (with kernel, ramdisk, disk) | 
|  | 155 | DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-0.3.0-x86_64-uec} | 
|  | 156 | IMAGE_URLS=${IMAGE_URLS:-"http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-uec.tar.gz"};; | 
|  | 157 | esac | 
|  | 158 | ;; | 
|  | 159 | *) # otherwise, use the uec style image (with kernel, ramdisk, disk) | 
|  | 160 | DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-0.3.0-x86_64-uec} | 
|  | 161 | IMAGE_URLS=${IMAGE_URLS:-"http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-uec.tar.gz"};; | 
| Scott Moser | a368218 | 2011-12-16 10:29:10 -0500 | [diff] [blame] | 162 | esac | 
| Anthony Young | 0ab1d46 | 2011-10-13 23:03:23 -0700 | [diff] [blame] | 163 |  | 
| Eoghan Glynn | 9cb1776 | 2012-07-15 10:22:45 +0100 | [diff] [blame] | 164 | # 5Gb default volume backing file size | 
|  | 165 | VOLUME_BACKING_FILE_SIZE=${VOLUME_BACKING_FILE_SIZE:-5130M} | 
| Nachi Ueno | fda946e | 2012-10-24 17:26:02 -0700 | [diff] [blame] | 166 |  | 
|  | 167 | PRIVATE_NETWORK_NAME=${PRIVATE_NETWORK_NAME:-"private"} | 
|  | 168 | PUBLIC_NETWORK_NAME=${PUBLIC_NETWORK_NAME:-"nova"} |