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