blob: 91f4e2b5d0a95f81873329e5018663321249b3ee [file] [log] [blame]
Dean Troyer4a43b7b2012-08-28 17:43:40 -05001# stackrc
2#
Dean Troyer0bd24102012-03-08 00:33:54 -06003# Find the other rc files
4RC_DIR=$(cd $(dirname "$BASH_SOURCE") && pwd)
5
Dean Troyer1214d9d2012-07-06 09:39:07 -05006# Destination path for installation
7DEST=/opt/stack
8
Dean Troyerc83a7e12012-11-29 11:47:58 -06009# Destination for working data
10DATA_DIR=${DEST}/data
11
Dean Troyerc1b486a2012-11-05 14:26:09 -060012# Select the default database
13DATABASE_TYPE=mysql
14
Dean Troyer74759aa2013-01-24 14:19:55 -060015# Determine stack user
16if [[ $EUID -eq 0 ]]; then
17 STACK_USER=stack
18else
19 STACK_USER=$(whoami)
20fi
Attila Fazekas91b8d132013-01-06 22:40:09 +010021
Chmouel Boudjnah8da56562012-03-09 14:21:40 +000022# Specify which services to launch. These generally correspond to
Dean Troyer4a43b7b2012-08-28 17:43:40 -050023# 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 Dague77f076a2012-12-10 16:49:20 -050027ENABLED_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 Boudjnah8da56562012-03-09 14:21:40 +000028
Dean Troyer67787e62012-05-02 11:48:15 -050029# Set the default Nova APIs to enable
Andrew Laski6e7e1c92012-10-31 16:11:37 -040030NOVA_ENABLED_APIS=ec2,osapi_compute,metadata
Dean Troyer67787e62012-05-02 11:48:15 -050031
Vishvananda Ishaya58e21342013-02-11 16:48:12 -080032# 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.
37SCREEN_DEV=True
38
Dean Troyer4a43b7b2012-08-28 17:43:40 -050039# Repositories
40# ------------
41
Monty Taylord5b18ec2012-07-26 09:21:01 -050042# Base GIT Repo URL
43# Another option is http://review.openstack.org/p
44GIT_BASE=https://github.com
45
John H. Tran93361642012-07-26 11:22:05 -070046# metering service
Lianhao Luaf5cd772012-11-12 16:36:42 +080047CEILOMETER_REPO=${GIT_BASE}/openstack/ceilometer.git
John H. Tran93361642012-07-26 11:22:05 -070048CEILOMETER_BRANCH=master
49
Yunhong, Jiange583d9b2013-01-09 09:33:07 +080050# ceilometer client library
51CEILOMETERCLIENT_REPO=${GIT_BASE}/openstack/python-ceilometerclient
52CEILOMETERCLIENT_BRANCH=master
53
Dean Troyer67787e62012-05-02 11:48:15 -050054# volume service
Monty Taylord5b18ec2012-07-26 09:21:01 -050055CINDER_REPO=${GIT_BASE}/openstack/cinder
Dean Troyer67787e62012-05-02 11:48:15 -050056CINDER_BRANCH=master
57
58# volume client
Monty Taylord5b18ec2012-07-26 09:21:01 -050059CINDERCLIENT_REPO=${GIT_BASE}/openstack/python-cinderclient
Dean Troyer67787e62012-05-02 11:48:15 -050060CINDERCLIENT_BRANCH=master
61
Anthony Young096fb5a2011-09-26 13:14:46 -070062# compute service
Monty Taylord5b18ec2012-07-26 09:21:01 -050063NOVA_REPO=${GIT_BASE}/openstack/nova.git
Jesse Andrews9c7c9082011-11-23 10:10:53 -080064NOVA_BRANCH=master
Anthony Young096fb5a2011-09-26 13:14:46 -070065
Chmouel Boudjnah28fa4e82011-11-01 12:30:55 +010066# storage service
Monty Taylord5b18ec2012-07-26 09:21:01 -050067SWIFT_REPO=${GIT_BASE}/openstack/swift.git
Jesse Andrews9c7c9082011-11-23 10:10:53 -080068SWIFT_BRANCH=master
Joe Gordon42b1aa92012-05-24 14:11:01 -070069SWIFT3_REPO=https://github.com/fujita/swift3.git
70SWIFT3_BRANCH=master
71
Chmouel Boudjnahfda9df82012-05-22 10:27:08 +000072# python swift client library
Monty Taylord5b18ec2012-07-26 09:21:01 -050073SWIFTCLIENT_REPO=${GIT_BASE}/openstack/python-swiftclient
Chmouel Boudjnahfda9df82012-05-22 10:27:08 +000074SWIFTCLIENT_BRANCH=master
75
Anthony Young096fb5a2011-09-26 13:14:46 -070076# image catalog service
Monty Taylord5b18ec2012-07-26 09:21:01 -050077GLANCE_REPO=${GIT_BASE}/openstack/glance.git
Jesse Andrews9c7c9082011-11-23 10:10:53 -080078GLANCE_BRANCH=master
Anthony Young096fb5a2011-09-26 13:14:46 -070079
Dean Troyer45495252012-04-13 13:16:38 -050080# python glance client library
Monty Taylord5b18ec2012-07-26 09:21:01 -050081GLANCECLIENT_REPO=${GIT_BASE}/openstack/python-glanceclient
Dean Troyer45495252012-04-13 13:16:38 -050082GLANCECLIENT_BRANCH=master
83
Anthony Young096fb5a2011-09-26 13:14:46 -070084# unified auth system (manages accounts/tokens)
Monty Taylord5b18ec2012-07-26 09:21:01 -050085KEYSTONE_REPO=${GIT_BASE}/openstack/keystone.git
Dean Troyer6a3f6072012-02-16 16:31:24 -060086KEYSTONE_BRANCH=master
Anthony Young096fb5a2011-09-26 13:14:46 -070087
88# a websockets/html5 or flash powered VNC console for vm instances
Anthony Young220d9382012-05-04 10:19:44 -070089NOVNC_REPO=https://github.com/kanaka/noVNC.git
Jesse Andrews9c7c9082011-11-23 10:10:53 -080090NOVNC_BRANCH=master
Anthony Young096fb5a2011-09-26 13:14:46 -070091
Daniel P. Berranged10e12f2013-01-03 11:51:42 +000092# a websockets/html5 or flash powered SPICE console for vm instances
93SPICE_REPO=http://anongit.freedesktop.org/git/spice/spice-html5.git
94SPICE_BRANCH=master
95
Anthony Young096fb5a2011-09-26 13:14:46 -070096# django powered web control panel for openstack
Monty Taylord5b18ec2012-07-26 09:21:01 -050097HORIZON_REPO=${GIT_BASE}/openstack/horizon.git
Jesse Andrews9c7c9082011-11-23 10:10:53 -080098HORIZON_BRANCH=master
Anthony Young096fb5a2011-09-26 13:14:46 -070099
Tres Henryca85b792011-10-28 14:00:21 -0700100# python client library to nova that horizon (and others) use
Monty Taylord5b18ec2012-07-26 09:21:01 -0500101NOVACLIENT_REPO=${GIT_BASE}/openstack/python-novaclient.git
Anthony Young248221a2011-09-27 11:25:18 -0700102NOVACLIENT_BRANCH=master
Anthony Young096fb5a2011-09-26 13:14:46 -0700103
Dean Troyer9f61d292012-11-26 18:56:20 +0000104# consolidated openstack python client
105OPENSTACKCLIENT_REPO=${GIT_BASE}/openstack/python-openstackclient.git
106OPENSTACKCLIENT_BRANCH=master
107
Anthony Young52e631d2011-12-27 22:22:14 -0800108# python keystone client library to nova that horizon uses
Monty Taylord5b18ec2012-07-26 09:21:01 -0500109KEYSTONECLIENT_REPO=${GIT_BASE}/openstack/python-keystoneclient
Anthony Young52e631d2011-12-27 22:22:14 -0800110KEYSTONECLIENT_BRANCH=master
111
Brad Hall1bfa3d52011-10-27 18:18:20 -0700112# quantum service
Monty Taylord5b18ec2012-07-26 09:21:01 -0500113QUANTUM_REPO=${GIT_BASE}/openstack/quantum
Jesse Andrews9c7c9082011-11-23 10:10:53 -0800114QUANTUM_BRANCH=master
Brad Hall1bfa3d52011-10-27 18:18:20 -0700115
Dave Lapsley5a09c922012-01-25 17:22:15 -0500116# quantum client
Dean Troyer60e9c0a2012-12-06 15:52:52 -0600117QUANTUMCLIENT_REPO=${GIT_BASE}/openstack/python-quantumclient
118QUANTUMCLIENT_BRANCH=master
Dave Lapsley5a09c922012-01-25 17:22:15 -0500119
Dean Troyer608bb122012-01-10 14:43:17 -0600120# Tempest test suite
Monty Taylord5b18ec2012-07-26 09:21:01 -0500121TEMPEST_REPO=${GIT_BASE}/openstack/tempest.git
Dean Troyer608bb122012-01-10 14:43:17 -0600122TEMPEST_BRANCH=master
Dean Troyerb0e57cf2011-11-04 12:13:43 -0500123
Steve Bakerbfdad752012-08-18 09:00:42 +1200124# heat service
Steven Hardy9a27dd82012-12-03 12:41:02 +0000125HEAT_REPO=${GIT_BASE}/openstack/heat.git
Steve Bakerbfdad752012-08-18 09:00:42 +1200126HEAT_BRANCH=master
127
Steve Baker32761a42012-11-05 09:57:57 +1300128# python heat client library
Clint Byrumdf1cf942013-01-10 11:12:45 -0800129HEATCLIENT_REPO=${GIT_BASE}/openstack/python-heatclient.git
Steve Baker32761a42012-11-05 09:57:57 +1300130HEATCLIENT_BRANCH=master
131
Yoshihiro Kaneko602cf9b2012-07-23 06:27:36 +0000132# ryu service
133RYU_REPO=https://github.com/osrg/ryu.git
134RYU_BRANCH=master
135
Devananda van der Veenf35cf912012-11-12 17:58:38 -0800136# diskimage-builder
137BM_IMAGE_BUILD_REPO=https://github.com/stackforge/diskimage-builder.git
138BM_IMAGE_BUILD_BRANCH=master
139
Devananda van der Veen7611c892012-11-23 10:54:54 -0800140# bm_poseur
141# Used to simulate a hardware environment for baremetal
142# Only used if BM_USE_FAKE_ENV is set
143BM_POSEUR_REPO=https://github.com/tripleo/bm_poseur.git
144BM_POSEUR_BRANCH=master
145
146
Devananda van der Veenc0c6f002012-07-06 17:49:12 -0700147# 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.
150VIRT_DRIVER=${VIRT_DRIVER:-libvirt}
151LIBVIRT_TYPE=${LIBVIRT_TYPE:-kvm}
152
153# allow local overrides of env variables
154if [ -f $RC_DIR/localrc ]; then
155 source $RC_DIR/localrc
156fi
157
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500158# Specify a comma-separated list of UEC images to download and install into glance.
Scott Moser4f6d7b62011-12-08 16:22:51 -0500159# 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ölker64a90662012-01-23 11:17:27 -0600168# example:
Scott Moser4f6d7b62011-12-08 16:22:51 -0500169# 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 Troyer4a43b7b2012-08-28 17:43:40 -0500171# * OpenVZ image:
172# OpenVZ uses its own format of image, and does not support UEC style images
173
Scott Moser3584e552011-12-08 16:23:27 -0500174#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 Troyer4a43b7b2012-08-28 17:43:40 -0500176
177# Set default image based on ``VIRT_DRIVER`` and ``LIBVIRT_TYPE``, either of
Nachi Uenofda946e2012-10-24 17:26:02 -0700178# which may be set in ``localrc``. Also allow ``DEFAULT_IMAGE_NAME`` and
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500179# ``IMAGE_URLS`` to be set directly in ``localrc``.
Devananda van der Veenc0c6f002012-07-06 17:49:12 -0700180case "$VIRT_DRIVER" in
Nachi Uenofda946e2012-10-24 17:26:02 -0700181 openvz)
Devananda van der Veenc0c6f002012-07-06 17:49:12 -0700182 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 Mosera3682182011-12-16 10:29:10 -0500197esac
Anthony Young0ab1d462011-10-13 23:03:23 -0700198
Eoghan Glynn9cb17762012-07-15 10:22:45 +0100199# 5Gb default volume backing file size
200VOLUME_BACKING_FILE_SIZE=${VOLUME_BACKING_FILE_SIZE:-5130M}
Nachi Uenofda946e2012-10-24 17:26:02 -0700201
202PRIVATE_NETWORK_NAME=${PRIVATE_NETWORK_NAME:-"private"}
203PUBLIC_NETWORK_NAME=${PUBLIC_NETWORK_NAME:-"nova"}