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