| 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 | c83a7e1 | 2012-11-29 11:47:58 -0600 | [diff] [blame] | 9 | # Destination for working data | 
|  | 10 | DATA_DIR=${DEST}/data | 
|  | 11 |  | 
| Dean Troyer | c1b486a | 2012-11-05 14:26:09 -0600 | [diff] [blame] | 12 | # Select the default database | 
|  | 13 | DATABASE_TYPE=mysql | 
|  | 14 |  | 
| Dean Troyer | 74759aa | 2013-01-24 14:19:55 -0600 | [diff] [blame] | 15 | # Determine stack user | 
|  | 16 | if [[ $EUID -eq 0 ]]; then | 
|  | 17 | STACK_USER=stack | 
|  | 18 | else | 
|  | 19 | STACK_USER=$(whoami) | 
|  | 20 | fi | 
| Attila Fazekas | 91b8d13 | 2013-01-06 22:40:09 +0100 | [diff] [blame] | 21 |  | 
| Chmouel Boudjnah | 8da5656 | 2012-03-09 14:21:40 +0000 | [diff] [blame] | 22 | # Specify which services to launch.  These generally correspond to | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 23 | # screen tabs. To change the default list, use the ``enable_service`` and | 
|  | 24 | # ``disable_service`` functions in ``localrc``. | 
|  | 25 | # For example, to enable Swift add this to ``localrc``: | 
|  | 26 | # enable_service swift | 
| Sean Dague | 77f076a | 2012-12-10 16:49:20 -0500 | [diff] [blame] | 27 | 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,tempest,$DATABASE_TYPE | 
| Chmouel Boudjnah | 8da5656 | 2012-03-09 14:21:40 +0000 | [diff] [blame] | 28 |  | 
| Dean Troyer | 67787e6 | 2012-05-02 11:48:15 -0500 | [diff] [blame] | 29 | # Set the default Nova APIs to enable | 
| Andrew Laski | 6e7e1c9 | 2012-10-31 16:11:37 -0400 | [diff] [blame] | 30 | NOVA_ENABLED_APIS=ec2,osapi_compute,metadata | 
| Dean Troyer | 67787e6 | 2012-05-02 11:48:15 -0500 | [diff] [blame] | 31 |  | 
| Vishvananda Ishaya | 58e2134 | 2013-02-11 16:48:12 -0800 | [diff] [blame^] | 32 | # Whether to use 'dev mode' for screen windows. Dev mode works by | 
|  | 33 | # stuffing text into the screen windows so that a developer can use | 
|  | 34 | # ctrl-c, up-arrow, enter to restart the service. Starting services | 
|  | 35 | # this way is slightly unreliable, and a bit slower, so this can | 
|  | 36 | # be disabled for automated testing by setting this value to false. | 
|  | 37 | SCREEN_DEV=True | 
|  | 38 |  | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 39 | # Repositories | 
|  | 40 | # ------------ | 
|  | 41 |  | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 42 | # Base GIT Repo URL | 
|  | 43 | # Another option is http://review.openstack.org/p | 
|  | 44 | GIT_BASE=https://github.com | 
|  | 45 |  | 
| John H. Tran | 9336164 | 2012-07-26 11:22:05 -0700 | [diff] [blame] | 46 | # metering service | 
| Lianhao Lu | af5cd77 | 2012-11-12 16:36:42 +0800 | [diff] [blame] | 47 | CEILOMETER_REPO=${GIT_BASE}/openstack/ceilometer.git | 
| John H. Tran | 9336164 | 2012-07-26 11:22:05 -0700 | [diff] [blame] | 48 | CEILOMETER_BRANCH=master | 
|  | 49 |  | 
| Yunhong, Jiang | e583d9b | 2013-01-09 09:33:07 +0800 | [diff] [blame] | 50 | # ceilometer client library | 
|  | 51 | CEILOMETERCLIENT_REPO=${GIT_BASE}/openstack/python-ceilometerclient | 
|  | 52 | CEILOMETERCLIENT_BRANCH=master | 
|  | 53 |  | 
| Dean Troyer | 67787e6 | 2012-05-02 11:48:15 -0500 | [diff] [blame] | 54 | # volume service | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 55 | CINDER_REPO=${GIT_BASE}/openstack/cinder | 
| Dean Troyer | 67787e6 | 2012-05-02 11:48:15 -0500 | [diff] [blame] | 56 | CINDER_BRANCH=master | 
|  | 57 |  | 
|  | 58 | # volume client | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 59 | CINDERCLIENT_REPO=${GIT_BASE}/openstack/python-cinderclient | 
| Dean Troyer | 67787e6 | 2012-05-02 11:48:15 -0500 | [diff] [blame] | 60 | CINDERCLIENT_BRANCH=master | 
|  | 61 |  | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 62 | # compute service | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 63 | NOVA_REPO=${GIT_BASE}/openstack/nova.git | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 64 | NOVA_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 65 |  | 
| Chmouel Boudjnah | 28fa4e8 | 2011-11-01 12:30:55 +0100 | [diff] [blame] | 66 | # storage service | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 67 | SWIFT_REPO=${GIT_BASE}/openstack/swift.git | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 68 | SWIFT_BRANCH=master | 
| Joe Gordon | 42b1aa9 | 2012-05-24 14:11:01 -0700 | [diff] [blame] | 69 | SWIFT3_REPO=https://github.com/fujita/swift3.git | 
|  | 70 | SWIFT3_BRANCH=master | 
|  | 71 |  | 
| Chmouel Boudjnah | fda9df8 | 2012-05-22 10:27:08 +0000 | [diff] [blame] | 72 | # python swift client library | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 73 | SWIFTCLIENT_REPO=${GIT_BASE}/openstack/python-swiftclient | 
| Chmouel Boudjnah | fda9df8 | 2012-05-22 10:27:08 +0000 | [diff] [blame] | 74 | SWIFTCLIENT_BRANCH=master | 
|  | 75 |  | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 76 | # image catalog service | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 77 | GLANCE_REPO=${GIT_BASE}/openstack/glance.git | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 78 | GLANCE_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 79 |  | 
| Dean Troyer | 4549525 | 2012-04-13 13:16:38 -0500 | [diff] [blame] | 80 | # python glance client library | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 81 | GLANCECLIENT_REPO=${GIT_BASE}/openstack/python-glanceclient | 
| Dean Troyer | 4549525 | 2012-04-13 13:16:38 -0500 | [diff] [blame] | 82 | GLANCECLIENT_BRANCH=master | 
|  | 83 |  | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 84 | # unified auth system (manages accounts/tokens) | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 85 | KEYSTONE_REPO=${GIT_BASE}/openstack/keystone.git | 
| Dean Troyer | 6a3f607 | 2012-02-16 16:31:24 -0600 | [diff] [blame] | 86 | KEYSTONE_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 87 |  | 
|  | 88 | # a websockets/html5 or flash powered VNC console for vm instances | 
| Anthony Young | 220d938 | 2012-05-04 10:19:44 -0700 | [diff] [blame] | 89 | NOVNC_REPO=https://github.com/kanaka/noVNC.git | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 90 | NOVNC_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 91 |  | 
| Daniel P. Berrange | d10e12f | 2013-01-03 11:51:42 +0000 | [diff] [blame] | 92 | # a websockets/html5 or flash powered SPICE console for vm instances | 
|  | 93 | SPICE_REPO=http://anongit.freedesktop.org/git/spice/spice-html5.git | 
|  | 94 | SPICE_BRANCH=master | 
|  | 95 |  | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 96 | # django powered web control panel for openstack | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 97 | HORIZON_REPO=${GIT_BASE}/openstack/horizon.git | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 98 | HORIZON_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 99 |  | 
| Tres Henry | ca85b79 | 2011-10-28 14:00:21 -0700 | [diff] [blame] | 100 | # python client library to nova that horizon (and others) use | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 101 | NOVACLIENT_REPO=${GIT_BASE}/openstack/python-novaclient.git | 
| Anthony Young | 248221a | 2011-09-27 11:25:18 -0700 | [diff] [blame] | 102 | NOVACLIENT_BRANCH=master | 
| Anthony Young | 096fb5a | 2011-09-26 13:14:46 -0700 | [diff] [blame] | 103 |  | 
| Dean Troyer | 9f61d29 | 2012-11-26 18:56:20 +0000 | [diff] [blame] | 104 | # consolidated openstack python client | 
|  | 105 | OPENSTACKCLIENT_REPO=${GIT_BASE}/openstack/python-openstackclient.git | 
|  | 106 | OPENSTACKCLIENT_BRANCH=master | 
|  | 107 |  | 
| Anthony Young | 52e631d | 2011-12-27 22:22:14 -0800 | [diff] [blame] | 108 | # python keystone client library to nova that horizon uses | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 109 | KEYSTONECLIENT_REPO=${GIT_BASE}/openstack/python-keystoneclient | 
| Anthony Young | 52e631d | 2011-12-27 22:22:14 -0800 | [diff] [blame] | 110 | KEYSTONECLIENT_BRANCH=master | 
|  | 111 |  | 
| Brad Hall | 1bfa3d5 | 2011-10-27 18:18:20 -0700 | [diff] [blame] | 112 | # quantum service | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 113 | QUANTUM_REPO=${GIT_BASE}/openstack/quantum | 
| Jesse Andrews | 9c7c908 | 2011-11-23 10:10:53 -0800 | [diff] [blame] | 114 | QUANTUM_BRANCH=master | 
| Brad Hall | 1bfa3d5 | 2011-10-27 18:18:20 -0700 | [diff] [blame] | 115 |  | 
| Dave Lapsley | 5a09c92 | 2012-01-25 17:22:15 -0500 | [diff] [blame] | 116 | # quantum client | 
| Dean Troyer | 60e9c0a | 2012-12-06 15:52:52 -0600 | [diff] [blame] | 117 | QUANTUMCLIENT_REPO=${GIT_BASE}/openstack/python-quantumclient | 
|  | 118 | QUANTUMCLIENT_BRANCH=master | 
| Dave Lapsley | 5a09c92 | 2012-01-25 17:22:15 -0500 | [diff] [blame] | 119 |  | 
| Dean Troyer | 608bb12 | 2012-01-10 14:43:17 -0600 | [diff] [blame] | 120 | # Tempest test suite | 
| Monty Taylor | d5b18ec | 2012-07-26 09:21:01 -0500 | [diff] [blame] | 121 | TEMPEST_REPO=${GIT_BASE}/openstack/tempest.git | 
| Dean Troyer | 608bb12 | 2012-01-10 14:43:17 -0600 | [diff] [blame] | 122 | TEMPEST_BRANCH=master | 
| Dean Troyer | b0e57cf | 2011-11-04 12:13:43 -0500 | [diff] [blame] | 123 |  | 
| Steve Baker | bfdad75 | 2012-08-18 09:00:42 +1200 | [diff] [blame] | 124 | # heat service | 
| Steven Hardy | 9a27dd8 | 2012-12-03 12:41:02 +0000 | [diff] [blame] | 125 | HEAT_REPO=${GIT_BASE}/openstack/heat.git | 
| Steve Baker | bfdad75 | 2012-08-18 09:00:42 +1200 | [diff] [blame] | 126 | HEAT_BRANCH=master | 
|  | 127 |  | 
| Steve Baker | 32761a4 | 2012-11-05 09:57:57 +1300 | [diff] [blame] | 128 | # python heat client library | 
| Clint Byrum | df1cf94 | 2013-01-10 11:12:45 -0800 | [diff] [blame] | 129 | HEATCLIENT_REPO=${GIT_BASE}/openstack/python-heatclient.git | 
| Steve Baker | 32761a4 | 2012-11-05 09:57:57 +1300 | [diff] [blame] | 130 | HEATCLIENT_BRANCH=master | 
|  | 131 |  | 
| Yoshihiro Kaneko | 602cf9b | 2012-07-23 06:27:36 +0000 | [diff] [blame] | 132 | # ryu service | 
|  | 133 | RYU_REPO=https://github.com/osrg/ryu.git | 
|  | 134 | RYU_BRANCH=master | 
|  | 135 |  | 
| Devananda van der Veen | f35cf91 | 2012-11-12 17:58:38 -0800 | [diff] [blame] | 136 | # diskimage-builder | 
|  | 137 | BM_IMAGE_BUILD_REPO=https://github.com/stackforge/diskimage-builder.git | 
|  | 138 | BM_IMAGE_BUILD_BRANCH=master | 
|  | 139 |  | 
| Devananda van der Veen | 7611c89 | 2012-11-23 10:54:54 -0800 | [diff] [blame] | 140 | # bm_poseur | 
|  | 141 | # Used to simulate a hardware environment for baremetal | 
|  | 142 | # Only used if BM_USE_FAKE_ENV is set | 
|  | 143 | BM_POSEUR_REPO=https://github.com/tripleo/bm_poseur.git | 
|  | 144 | BM_POSEUR_BRANCH=master | 
|  | 145 |  | 
|  | 146 |  | 
| Devananda van der Veen | c0c6f00 | 2012-07-06 17:49:12 -0700 | [diff] [blame] | 147 | # Nova hypervisor configuration.  We default to libvirt with **kvm** but will | 
|  | 148 | # drop back to **qemu** if we are unable to load the kvm module.  ``stack.sh`` can | 
|  | 149 | # also install an **LXC** or **OpenVZ** based system. | 
|  | 150 | VIRT_DRIVER=${VIRT_DRIVER:-libvirt} | 
|  | 151 | LIBVIRT_TYPE=${LIBVIRT_TYPE:-kvm} | 
|  | 152 |  | 
|  | 153 | # allow local overrides of env variables | 
|  | 154 | if [ -f $RC_DIR/localrc ]; then | 
|  | 155 | source $RC_DIR/localrc | 
|  | 156 | fi | 
|  | 157 |  | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 158 | # 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] | 159 | # supported urls here are: | 
|  | 160 | #  * "uec-style" images: | 
|  | 161 | #     If the file ends in .tar.gz, uncompress the tarball and and select the first | 
|  | 162 | #     .img file inside it as the image.  If present, use "*-vmlinuz*" as the kernel | 
|  | 163 | #     and "*-initrd*" as the ramdisk | 
|  | 164 | #     example: http://cloud-images.ubuntu.com/releases/oneiric/release/ubuntu-11.10-server-cloudimg-amd64.tar.gz | 
|  | 165 | #  * disk image (*.img,*.img.gz) | 
|  | 166 | #    if file ends in .img, then it will be uploaded and registered as a to | 
|  | 167 | #    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] | 168 | #    example: | 
| Scott Moser | 4f6d7b6 | 2011-12-08 16:22:51 -0500 | [diff] [blame] | 169 | #      http://cloud-images.ubuntu.com/releases/oneiric/release/ubuntu-11.10-server-cloudimg-armel-disk1.img | 
|  | 170 | #      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] | 171 | #  * OpenVZ image: | 
|  | 172 | #    OpenVZ uses its own format of image, and does not support UEC style images | 
|  | 173 |  | 
| Scott Moser | 3584e55 | 2011-12-08 16:23:27 -0500 | [diff] [blame] | 174 | #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 | 
|  | 175 | #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] | 176 |  | 
|  | 177 | # Set default image based on ``VIRT_DRIVER`` and ``LIBVIRT_TYPE``, either of | 
| Nachi Ueno | fda946e | 2012-10-24 17:26:02 -0700 | [diff] [blame] | 178 | # which may be set in ``localrc``.  Also allow ``DEFAULT_IMAGE_NAME`` and | 
| Dean Troyer | 4a43b7b | 2012-08-28 17:43:40 -0500 | [diff] [blame] | 179 | # ``IMAGE_URLS`` to be set directly in ``localrc``. | 
| Devananda van der Veen | c0c6f00 | 2012-07-06 17:49:12 -0700 | [diff] [blame] | 180 | case "$VIRT_DRIVER" in | 
| Nachi Ueno | fda946e | 2012-10-24 17:26:02 -0700 | [diff] [blame] | 181 | openvz) | 
| Devananda van der Veen | c0c6f00 | 2012-07-06 17:49:12 -0700 | [diff] [blame] | 182 | DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-ubuntu-11.10-x86_64} | 
|  | 183 | IMAGE_URLS=${IMAGE_URLS:-"http://download.openvz.org/template/precreated/ubuntu-11.10-x86_64.tar.gz"};; | 
|  | 184 | libvirt) | 
|  | 185 | case "$LIBVIRT_TYPE" in | 
|  | 186 | lxc) # the cirros root disk in the uec tarball is empty, so it will not work for lxc | 
|  | 187 | DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-0.3.0-x86_64-rootfs} | 
|  | 188 | IMAGE_URLS=${IMAGE_URLS:-"http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-rootfs.img.gz"};; | 
|  | 189 | *) # otherwise, use the uec style image (with kernel, ramdisk, disk) | 
|  | 190 | DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-0.3.0-x86_64-uec} | 
|  | 191 | IMAGE_URLS=${IMAGE_URLS:-"http://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-uec.tar.gz"};; | 
|  | 192 | esac | 
|  | 193 | ;; | 
|  | 194 | *) # otherwise, use the uec style image (with kernel, ramdisk, disk) | 
|  | 195 | DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-0.3.0-x86_64-uec} | 
|  | 196 | 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] | 197 | esac | 
| Anthony Young | 0ab1d46 | 2011-10-13 23:03:23 -0700 | [diff] [blame] | 198 |  | 
| Eoghan Glynn | 9cb1776 | 2012-07-15 10:22:45 +0100 | [diff] [blame] | 199 | # 5Gb default volume backing file size | 
|  | 200 | VOLUME_BACKING_FILE_SIZE=${VOLUME_BACKING_FILE_SIZE:-5130M} | 
| Nachi Ueno | fda946e | 2012-10-24 17:26:02 -0700 | [diff] [blame] | 201 |  | 
|  | 202 | PRIVATE_NETWORK_NAME=${PRIVATE_NETWORK_NAME:-"private"} | 
|  | 203 | PUBLIC_NETWORK_NAME=${PUBLIC_NETWORK_NAME:-"nova"} |