blob: 0daac387fc6abd088bdae0509d804e6f57194d0a [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
Peter Feiner388e36c2013-10-24 18:51:44 -04004RC_DIR=$(cd $(dirname "${BASH_SOURCE:-$0}") && pwd)
Dean Troyer0bd24102012-03-08 00:33:54 -06005
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 Troyer9fc87922013-05-22 17:19:06 -050012# Destination for status files
13SERVICE_DIR=${DEST}/status
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
Bartosz Górski0abde392014-02-28 14:15:19 +010022# Specify region name Region
23REGION_NAME=${REGION_NAME:-RegionOne}
24
Chmouel Boudjnah8da56562012-03-09 14:21:40 +000025# Specify which services to launch. These generally correspond to
Dean Troyer4a43b7b2012-08-28 17:43:40 -050026# screen tabs. To change the default list, use the ``enable_service`` and
Dean Troyera79617c2014-04-13 18:16:54 -050027# ``disable_service`` functions in ``local.conf``.
28# For example, to enable Swift add this to ``local.conf``:
29# enable_service s-proxy s-object s-container s-account
Mark McClainb05c8762013-07-06 23:29:39 -040030# In order to enable Neutron (a single node setup) add the following
Oleg Bondarev1f11f9a2013-03-25 05:34:23 -070031# settings in `` localrc``:
32# disable_service n-net
33# enable_service q-svc
34# enable_service q-agt
35# enable_service q-dhcp
36# enable_service q-l3
37# enable_service q-meta
Oleg Bondarev1f11f9a2013-03-25 05:34:23 -070038# # Optional, to enable tempest configuration as part of devstack
39# enable_service tempest
Sean Daguea42541a2014-02-13 09:39:15 -050040
Sean Daguefafb62b2014-06-30 16:49:30 -040041# this allows us to pass ENABLED_SERVICES
42if [[ -z "$ENABLED_SERVICES" ]]; then
43 # core compute (glance / keystone / nova (+ nova-network))
44 ENABLED_SERVICES=g-api,g-reg,key,n-api,n-crt,n-obj,n-cpu,n-net,n-cond,n-sch,n-novnc,n-xvnc,n-cauth
45 # cinder
46 ENABLED_SERVICES+=,c-sch,c-api,c-vol
47 # heat
48 ENABLED_SERVICES+=,h-eng,h-api,h-api-cfn,h-api-cw
49 # dashboard
50 ENABLED_SERVICES+=,horizon
51 # additional services
52 ENABLED_SERVICES+=,rabbit,tempest,mysql
53fi
Chmouel Boudjnah8da56562012-03-09 14:21:40 +000054
Dean Troyer4237f592014-01-29 16:22:11 -060055# Tell Tempest which services are available. The default is set here as
56# Tempest falls late in the configuration sequence. This differs from
57# ``ENABLED_SERVICES`` in that the project names are used here rather than
58# the service names, i.e.: TEMPEST_SERVICES="key,glance,nova"
59TEMPEST_SERVICES=""
60
Dean Troyer67787e62012-05-02 11:48:15 -050061# Set the default Nova APIs to enable
Andrew Laski6e7e1c92012-10-31 16:11:37 -040062NOVA_ENABLED_APIS=ec2,osapi_compute,metadata
Dean Troyer67787e62012-05-02 11:48:15 -050063
Dean Troyer3005e172013-01-24 14:14:28 -060064# Configure Identity API version: 2.0, 3
65IDENTITY_API_VERSION=2.0
66
Vishvananda Ishaya58e21342013-02-11 16:48:12 -080067# Whether to use 'dev mode' for screen windows. Dev mode works by
68# stuffing text into the screen windows so that a developer can use
69# ctrl-c, up-arrow, enter to restart the service. Starting services
70# this way is slightly unreliable, and a bit slower, so this can
Dean Troyer681f3fd2013-02-27 19:00:39 -060071# be disabled for automated testing by setting this value to False.
72USE_SCREEN=True
Vishvananda Ishaya58e21342013-02-11 16:48:12 -080073
Maru Newbya81dcaa2013-03-26 00:15:34 -040074# allow local overrides of env variables, including repo config
Dean Troyer893e6632013-09-13 15:05:51 -050075if [[ -f $RC_DIR/localrc ]]; then
76 # Old-style user-supplied config
Maru Newbya81dcaa2013-03-26 00:15:34 -040077 source $RC_DIR/localrc
Dean Troyer893e6632013-09-13 15:05:51 -050078elif [[ -f $RC_DIR/.localrc.auto ]]; then
79 # New-style user-supplied config extracted from local.conf
80 source $RC_DIR/.localrc.auto
Maru Newbya81dcaa2013-03-26 00:15:34 -040081fi
82
Jeremy Stanleyc4f47342014-01-25 01:10:31 +000083# This can be used to turn database query logging on and off
84# (currently only implemented for MySQL backend)
85DATABASE_QUERY_LOGGING=$(trueorfalse True $DATABASE_QUERY_LOGGING)
Dean Troyercc6b4432013-04-08 15:38:03 -050086
Ian Wienandd53ad0b2014-02-20 13:55:13 +110087# Set a timeout for git operations. If git is still running when the
88# timeout expires, the command will be retried up to 3 times. This is
89# in the format for timeout(1);
90#
91# DURATION is a floating point number with an optional suffix: 's'
92# for seconds (the default), 'm' for minutes, 'h' for hours or 'd'
93# for days.
94#
95# Zero disables timeouts
96GIT_TIMEOUT=${GIT_TIMEOUT:-0}
97
Dean Troyer4a43b7b2012-08-28 17:43:40 -050098# Repositories
99# ------------
100
Monty Taylord5b18ec2012-07-26 09:21:01 -0500101# Base GIT Repo URL
102# Another option is http://review.openstack.org/p
Steve Kowalik047cac52013-11-07 22:36:10 +1100103GIT_BASE=${GIT_BASE:-git://git.openstack.org}
Monty Taylord5b18ec2012-07-26 09:21:01 -0500104
John H. Tran93361642012-07-26 11:22:05 -0700105# metering service
Maru Newbya81dcaa2013-03-26 00:15:34 -0400106CEILOMETER_REPO=${CEILOMETER_REPO:-${GIT_BASE}/openstack/ceilometer.git}
107CEILOMETER_BRANCH=${CEILOMETER_BRANCH:-master}
John H. Tran93361642012-07-26 11:22:05 -0700108
Yunhong, Jiange583d9b2013-01-09 09:33:07 +0800109# ceilometer client library
Maru Newbya81dcaa2013-03-26 00:15:34 -0400110CEILOMETERCLIENT_REPO=${CEILOMETERCLIENT_REPO:-${GIT_BASE}/openstack/python-ceilometerclient.git}
111CEILOMETERCLIENT_BRANCH=${CEILOMETERCLIENT_BRANCH:-master}
Yunhong, Jiange583d9b2013-01-09 09:33:07 +0800112
Dean Troyer67787e62012-05-02 11:48:15 -0500113# volume service
Maru Newbya81dcaa2013-03-26 00:15:34 -0400114CINDER_REPO=${CINDER_REPO:-${GIT_BASE}/openstack/cinder.git}
115CINDER_BRANCH=${CINDER_BRANCH:-master}
Dean Troyer67787e62012-05-02 11:48:15 -0500116
117# volume client
Maru Newbya81dcaa2013-03-26 00:15:34 -0400118CINDERCLIENT_REPO=${CINDERCLIENT_REPO:-${GIT_BASE}/openstack/python-cinderclient.git}
119CINDERCLIENT_BRANCH=${CINDERCLIENT_BRANCH:-master}
Dean Troyer67787e62012-05-02 11:48:15 -0500120
Dean Troyer1a6d4492013-06-03 16:47:36 -0500121# image catalog service
122GLANCE_REPO=${GLANCE_REPO:-${GIT_BASE}/openstack/glance.git}
123GLANCE_BRANCH=${GLANCE_BRANCH:-master}
124
125# python glance client library
126GLANCECLIENT_REPO=${GLANCECLIENT_REPO:-${GIT_BASE}/openstack/python-glanceclient.git}
127GLANCECLIENT_BRANCH=${GLANCECLIENT_BRANCH:-master}
128
129# heat service
130HEAT_REPO=${HEAT_REPO:-${GIT_BASE}/openstack/heat.git}
131HEAT_BRANCH=${HEAT_BRANCH:-master}
132
133# python heat client library
134HEATCLIENT_REPO=${HEATCLIENT_REPO:-${GIT_BASE}/openstack/python-heatclient.git}
135HEATCLIENT_BRANCH=${HEATCLIENT_BRANCH:-master}
136
137# django powered web control panel for openstack
138HORIZON_REPO=${HORIZON_REPO:-${GIT_BASE}/openstack/horizon.git}
139HORIZON_BRANCH=${HORIZON_BRANCH:-master}
140
Zhenguo Niue385d1e2014-03-12 16:58:12 +0800141# django openstack_auth library
142HORIZONAUTH_REPO=${HORIZONAUTH_REPO:-${GIT_BASE}/openstack/django_openstack_auth.git}
143HORIZONAUTH_BRANCH=${HORIZONAUTH_BRANCH:-master}
144
Roman Prykhodchenkoce696b62013-08-09 10:40:45 +0300145# baremetal provisionint service
146IRONIC_REPO=${IRONIC_REPO:-${GIT_BASE}/openstack/ironic.git}
147IRONIC_BRANCH=${IRONIC_BRANCH:-master}
148
Roman Prykhodchenko43e00662013-10-15 17:03:15 +0300149# ironic client
150IRONICCLIENT_REPO=${IRONICCLIENT_REPO:-${GIT_BASE}/openstack/python-ironicclient.git}
151IRONICCLIENT_BRANCH=${IRONICCLIENT_BRANCH:-master}
152
Dean Troyer1a6d4492013-06-03 16:47:36 -0500153# unified auth system (manages accounts/tokens)
154KEYSTONE_REPO=${KEYSTONE_REPO:-${GIT_BASE}/openstack/keystone.git}
155KEYSTONE_BRANCH=${KEYSTONE_BRANCH:-master}
156
157# python keystone client library to nova that horizon uses
158KEYSTONECLIENT_REPO=${KEYSTONECLIENT_REPO:-${GIT_BASE}/openstack/python-keystoneclient.git}
159KEYSTONECLIENT_BRANCH=${KEYSTONECLIENT_BRANCH:-master}
160
Morgan Fainberg58936fd2014-06-24 12:26:07 -0700161# keystone middleware
162KEYSTONEMIDDLEWARE_REPO=${KEYSTONEMIDDLEWARE_REPO:-${GIT_BASE}/openstack/keystonemiddleware.git}
163KEYSTONEMIDDLEWARE_BRANCH=${KEYSTONEMIDDLEWARE_BRANCH:-master}
164
Anthony Young096fb5a2011-09-26 13:14:46 -0700165# compute service
Maru Newbya81dcaa2013-03-26 00:15:34 -0400166NOVA_REPO=${NOVA_REPO:-${GIT_BASE}/openstack/nova.git}
167NOVA_BRANCH=${NOVA_BRANCH:-master}
Anthony Young096fb5a2011-09-26 13:14:46 -0700168
Dean Troyer1a6d4492013-06-03 16:47:36 -0500169# python client library to nova that horizon (and others) use
170NOVACLIENT_REPO=${NOVACLIENT_REPO:-${GIT_BASE}/openstack/python-novaclient.git}
171NOVACLIENT_BRANCH=${NOVACLIENT_BRANCH:-master}
172
173# consolidated openstack python client
174OPENSTACKCLIENT_REPO=${OPENSTACKCLIENT_REPO:-${GIT_BASE}/openstack/python-openstackclient.git}
175OPENSTACKCLIENT_BRANCH=${OPENSTACKCLIENT_BRANCH:-master}
176
Doug Hellmann6b1cb102014-02-10 09:59:43 -0800177# cliff command line framework
178CLIFF_REPO=${CLIFF_REPO:-${GIT_BASE}/openstack/cliff.git}
179CLIFF_BRANCH=${CLIFF_BRANCH:-master}
180
Sean Dague1b6b5312013-07-31 06:46:34 -0400181# oslo.config
182OSLOCFG_REPO=${OSLOCFG_REPO:-${GIT_BASE}/openstack/oslo.config.git}
183OSLOCFG_BRANCH=${OSLOCFG_BRANCH:-master}
184
Victor Sergeyevda945f32014-04-28 15:44:29 +0300185# oslo.db
186OSLODB_REPO=${OSLODB_REPO:-${GIT_BASE}/openstack/oslo.db.git}
187OSLODB_BRANCH=${OSLODB_BRANCH:-master}
188
Doug Hellmanncd5c8132014-07-02 11:58:35 -0700189# oslo.i18n
190OSLOI18N_REPO=${OSLOI18N_REPO:-${GIT_BASE}/openstack/oslo.i18n.git}
191OSLOI18N_BRANCH=${OSLOI18N_BRANCH:-master}
192
Sean Dague1b6b5312013-07-31 06:46:34 -0400193# oslo.messaging
194OSLOMSG_REPO=${OSLOMSG_REPO:-${GIT_BASE}/openstack/oslo.messaging.git}
195OSLOMSG_BRANCH=${OSLOMSG_BRANCH:-master}
196
Thierry Carrez0915e0c2014-01-02 15:05:41 +0100197# oslo.rootwrap
198OSLORWRAP_REPO=${OSLORWRAP_REPO:-${GIT_BASE}/openstack/oslo.rootwrap.git}
199OSLORWRAP_BRANCH=${OSLORWRAP_BRANCH:-master}
200
Davanum Srinivasf5aa05c2014-02-21 22:03:59 -0500201# oslo.vmware
202OSLOVMWARE_REPO=${OSLOVMWARE_REPO:-${GIT_BASE}/openstack/oslo.vmware.git}
203OSLOVMWARE_BRANCH=${OSLOVMWARE_BRANCH:-master}
204
Doug Hellmann6b1cb102014-02-10 09:59:43 -0800205# pycadf auditing library
206PYCADF_REPO=${PYCADF_REPO:-${GIT_BASE}/openstack/pycadf.git}
207PYCADF_BRANCH=${PYCADF_BRANCH:-master}
208
209# stevedore plugin manager
210STEVEDORE_REPO=${STEVEDORE_REPO:-${GIT_BASE}/openstack/stevedore.git}
211STEVEDORE_BRANCH=${STEVEDORE_BRANCH:-master}
212
213# taskflow plugin manager
214TASKFLOW_REPO=${TASKFLOW_REPO:-${GIT_BASE}/openstack/taskflow.git}
215TASKFLOW_BRANCH=${TASKFLOW_BRANCH:-master}
216
Dean Troyer1a6d4492013-06-03 16:47:36 -0500217# pbr drives the setuptools configs
218PBR_REPO=${PBR_REPO:-${GIT_BASE}/openstack-dev/pbr.git}
219PBR_BRANCH=${PBR_BRANCH:-master}
220
Mark McClainb05c8762013-07-06 23:29:39 -0400221# neutron service
222NEUTRON_REPO=${NEUTRON_REPO:-${GIT_BASE}/openstack/neutron.git}
223NEUTRON_BRANCH=${NEUTRON_BRANCH:-master}
Dean Troyer1a6d4492013-06-03 16:47:36 -0500224
Mark McClainb05c8762013-07-06 23:29:39 -0400225# neutron client
226NEUTRONCLIENT_REPO=${NEUTRONCLIENT_REPO:-${GIT_BASE}/openstack/python-neutronclient.git}
227NEUTRONCLIENT_BRANCH=${NEUTRONCLIENT_BRANCH:-master}
Dean Troyer1a6d4492013-06-03 16:47:36 -0500228
Sean Dague0392a102013-07-31 13:07:45 -0400229# consolidated openstack requirements
230REQUIREMENTS_REPO=${REQUIREMENTS_REPO:-${GIT_BASE}/openstack/requirements.git}
231REQUIREMENTS_BRANCH=${REQUIREMENTS_BRANCH:-master}
232
Chmouel Boudjnah28fa4e82011-11-01 12:30:55 +0100233# storage service
Maru Newbya81dcaa2013-03-26 00:15:34 -0400234SWIFT_REPO=${SWIFT_REPO:-${GIT_BASE}/openstack/swift.git}
235SWIFT_BRANCH=${SWIFT_BRANCH:-master}
Chmouel Boudjnah43577d52014-03-25 23:45:05 +0000236SWIFT3_REPO=${SWIFT3_REPO:-${GIT_BASE}/stackforge/swift3.git}
Maru Newbya81dcaa2013-03-26 00:15:34 -0400237SWIFT3_BRANCH=${SWIFT3_BRANCH:-master}
Joe Gordon42b1aa92012-05-24 14:11:01 -0700238
Chmouel Boudjnahfda9df82012-05-22 10:27:08 +0000239# python swift client library
Maru Newbya81dcaa2013-03-26 00:15:34 -0400240SWIFTCLIENT_REPO=${SWIFTCLIENT_REPO:-${GIT_BASE}/openstack/python-swiftclient.git}
241SWIFTCLIENT_BRANCH=${SWIFTCLIENT_BRANCH:-master}
Chmouel Boudjnahfda9df82012-05-22 10:27:08 +0000242
Dean Troyer608bb122012-01-10 14:43:17 -0600243# Tempest test suite
Maru Newbya81dcaa2013-03-26 00:15:34 -0400244TEMPEST_REPO=${TEMPEST_REPO:-${GIT_BASE}/openstack/tempest.git}
245TEMPEST_BRANCH=${TEMPEST_BRANCH:-master}
Dean Troyerb0e57cf2011-11-04 12:13:43 -0500246
Yoshihiro Kaneko602cf9b2012-07-23 06:27:36 +0000247
Devananda van der Veenf35cf912012-11-12 17:58:38 -0800248# diskimage-builder
Alexander Gordeevf177f722014-03-14 18:44:48 +0400249DIB_REPO=${DIB_REPO:-${GIT_BASE}/openstack/diskimage-builder.git}
250DIB_BRANCH=${DIB_BRANCH:-master}
Devananda van der Veenf35cf912012-11-12 17:58:38 -0800251
Dean Troyer1a6d4492013-06-03 16:47:36 -0500252# a websockets/html5 or flash powered VNC console for vm instances
Ana Krivokapic1bbb0ca2013-12-04 15:25:45 +0100253NOVNC_REPO=${NOVNC_REPO:-https://github.com/kanaka/noVNC.git}
Dean Troyer1a6d4492013-06-03 16:47:36 -0500254NOVNC_BRANCH=${NOVNC_BRANCH:-master}
255
256# ryu service
Steve Kowalik047cac52013-11-07 22:36:10 +1100257RYU_REPO=${RYU_REPO:-https://github.com/osrg/ryu.git}
Dean Troyer1a6d4492013-06-03 16:47:36 -0500258RYU_BRANCH=${RYU_BRANCH:-master}
259
260# a websockets/html5 or flash powered SPICE console for vm instances
261SPICE_REPO=${SPICE_REPO:-http://anongit.freedesktop.org/git/spice/spice-html5.git}
262SPICE_BRANCH=${SPICE_BRANCH:-master}
263
Nikhil Manchanda0cccad42012-12-03 18:15:09 -0700264# trove service
265TROVE_REPO=${TROVE_REPO:-${GIT_BASE}/openstack/trove.git}
266TROVE_BRANCH=${TROVE_BRANCH:-master}
267
268# trove client library test
269TROVECLIENT_REPO=${TROVECLIENT_REPO:-${GIT_BASE}/openstack/python-troveclient.git}
270TROVECLIENT_BRANCH=${TROVECLIENT_BRANCH:-master}
Monty Taylor5e159492013-05-08 14:29:52 -0400271
Sean Dague68322722013-10-21 18:11:40 -0400272# stackforge libraries that are used by OpenStack core services
273# wsme
274WSME_REPO=${WSME_REPO:-${GIT_BASE}/stackforge/wsme.git}
275WSME_BRANCH=${WSME_BRANCH:-master}
276
277# pecan
278PECAN_REPO=${PECAN_REPO:-${GIT_BASE}/stackforge/pecan.git}
279PECAN_BRANCH=${PECAN_BRANCH:-master}
280
281
Devananda van der Veenc0c6f002012-07-06 17:49:12 -0700282# Nova hypervisor configuration. We default to libvirt with **kvm** but will
283# drop back to **qemu** if we are unable to load the kvm module. ``stack.sh`` can
Bob Ball32e16032013-07-29 15:51:43 +0100284# also install an **LXC**, **OpenVZ** or **XenAPI** based system. If xenserver-core
285# is installed, the default will be XenAPI
286DEFAULT_VIRT_DRIVER=libvirt
287is_package_installed xenserver-core && DEFAULT_VIRT_DRIVER=xenserver
288VIRT_DRIVER=${VIRT_DRIVER:-$DEFAULT_VIRT_DRIVER}
Bob Ball337bd812013-05-16 14:27:01 +0100289case "$VIRT_DRIVER" in
Alexander Gordeev06fb29c2014-01-31 18:02:07 +0400290 ironic|libvirt)
Bob Ball337bd812013-05-16 14:27:01 +0100291 LIBVIRT_TYPE=${LIBVIRT_TYPE:-kvm}
292 if [[ "$os_VENDOR" =~ (Debian) ]]; then
293 LIBVIRT_GROUP=libvirt
294 else
295 LIBVIRT_GROUP=libvirtd
296 fi
297 ;;
Joe Gordon2c94ee52013-08-02 02:02:01 +0000298 fake)
299 NUMBER_FAKE_NOVA_COMPUTE=${NUMBER_FAKE_NOVA_COMPUTE:-1}
300 ;;
Bob Ball337bd812013-05-16 14:27:01 +0100301 xenserver)
Mark McClainb05c8762013-07-06 23:29:39 -0400302 # Xen config common to nova and neutron
Bob Ball337bd812013-05-16 14:27:01 +0100303 XENAPI_USER=${XENAPI_USER:-"root"}
Mate Lakatd15c8a02014-02-04 12:38:14 +0000304 # This user will be used for dom0 - domU communication
305 # should be able to log in to dom0 without a password
306 # will be used to install the plugins
307 DOMZERO_USER=${DOMZERO_USER:-"domzero"}
Bob Ball337bd812013-05-16 14:27:01 +0100308 ;;
309 *)
310 ;;
311esac
Devananda van der Veenc0c6f002012-07-06 17:49:12 -0700312
Dean Troyer1a6d4492013-06-03 16:47:36 -0500313
314# Images
315# ------
316
317# Specify a comma-separated list of images to download and install into glance.
318# Supported urls here are:
Scott Moser4f6d7b62011-12-08 16:22:51 -0500319# * "uec-style" images:
320# If the file ends in .tar.gz, uncompress the tarball and and select the first
321# .img file inside it as the image. If present, use "*-vmlinuz*" as the kernel
322# and "*-initrd*" as the ramdisk
Dean Troyer1a6d4492013-06-03 16:47:36 -0500323# example: http://cloud-images.ubuntu.com/releases/precise/release/ubuntu-12.04-server-cloudimg-amd64.tar.gz
Scott Moser4f6d7b62011-12-08 16:22:51 -0500324# * disk image (*.img,*.img.gz)
325# if file ends in .img, then it will be uploaded and registered as a to
326# glance as a disk image. If it ends in .gz, it is uncompressed first.
Jason Kölker64a90662012-01-23 11:17:27 -0600327# example:
Dean Troyer1a6d4492013-06-03 16:47:36 -0500328# http://cloud-images.ubuntu.com/releases/precise/release/ubuntu-12.04-server-cloudimg-armel-disk1.img
Attila Fazekas2d4c8da2014-03-19 10:42:01 +0100329# http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-rootfs.img.gz
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500330# * OpenVZ image:
331# OpenVZ uses its own format of image, and does not support UEC style images
332
Scott Moser3584e552011-12-08 16:23:27 -0500333#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
Attila Fazekas2d4c8da2014-03-19 10:42:01 +0100334#IMAGE_URLS="http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-disk.img" # cirros full disk image
335
336CIRROS_VERSION=${CIRROS_VERSION:-"0.3.2"}
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500337
338# Set default image based on ``VIRT_DRIVER`` and ``LIBVIRT_TYPE``, either of
Nachi Uenofda946e2012-10-24 17:26:02 -0700339# which may be set in ``localrc``. Also allow ``DEFAULT_IMAGE_NAME`` and
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500340# ``IMAGE_URLS`` to be set directly in ``localrc``.
Devananda van der Veenc0c6f002012-07-06 17:49:12 -0700341case "$VIRT_DRIVER" in
Nachi Uenofda946e2012-10-24 17:26:02 -0700342 openvz)
Monty Taylora49ee322013-07-27 15:36:53 -0400343 DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-ubuntu-12.04-x86_64}
Monty Taylora8ca8152013-07-31 13:12:30 -0400344 IMAGE_URLS=${IMAGE_URLS:-"http://download.openvz.org/template/precreated/ubuntu-12.04-x86_64.tar.gz"};;
Devananda van der Veenc0c6f002012-07-06 17:49:12 -0700345 libvirt)
346 case "$LIBVIRT_TYPE" in
347 lxc) # the cirros root disk in the uec tarball is empty, so it will not work for lxc
Attila Fazekas2d4c8da2014-03-19 10:42:01 +0100348 DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-${CIRROS_VERSION}-x86_64-rootfs}
349 IMAGE_URLS=${IMAGE_URLS:-"http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-rootfs.img.gz"};;
Devananda van der Veenc0c6f002012-07-06 17:49:12 -0700350 *) # otherwise, use the uec style image (with kernel, ramdisk, disk)
Attila Fazekas2d4c8da2014-03-19 10:42:01 +0100351 DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-${CIRROS_VERSION}-x86_64-uec}
352 IMAGE_URLS=${IMAGE_URLS:-"http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-uec.tar.gz"};;
Devananda van der Veenc0c6f002012-07-06 17:49:12 -0700353 esac
354 ;;
hartsocksa418af92013-04-24 14:49:56 -0700355 vsphere)
Eric Brown641722b2014-04-21 08:44:32 -0700356 DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-0.3.2-i386-disk.vmdk}
357 IMAGE_URLS=${IMAGE_URLS:-"http://partnerweb.vmware.com/programs/vmdkimage/cirros-0.3.2-i386-disk.vmdk"};;
Mate Lakatc75c78a2014-01-21 15:01:01 +0000358 xenserver)
359 DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-0.3.0-x86_64-disk}
360 IMAGE_URLS=${IMAGE_URLS:-"https://github.com/downloads/citrix-openstack/warehouse/cirros-0.3.0-x86_64-disk.vhd.tgz"};;
Dean Troyer1a6d4492013-06-03 16:47:36 -0500361 *) # Default to Cirros with kernel, ramdisk and disk image
Attila Fazekas2d4c8da2014-03-19 10:42:01 +0100362 DEFAULT_IMAGE_NAME=${DEFAULT_IMAGE_NAME:-cirros-${CIRROS_VERSION}-x86_64-uec}
363 IMAGE_URLS=${IMAGE_URLS:-"http://download.cirros-cloud.net/${CIRROS_VERSION}/cirros-${CIRROS_VERSION}-x86_64-uec.tar.gz"};;
Scott Mosera3682182011-12-16 10:29:10 -0500364esac
Anthony Young0ab1d462011-10-13 23:03:23 -0700365
Sean Dague4418d1f2014-04-24 16:06:51 -0400366# Use 64bit fedora image if heat is enabled
367if [[ "$ENABLED_SERVICES" =~ 'h-api' ]]; then
Bob Ball527f21c2014-04-28 08:30:18 +0100368 case "$VIRT_DRIVER" in
369 libvirt|baremetal|ironic)
Attila Fazekasbfcb2ff2014-06-26 12:38:20 +0200370 HEAT_CFN_IMAGE_URL=${HEAT_CFN_IMAGE_URL:-"http://dl.fedoraproject.org/pub/alt/openstack/20/x86_64/Fedora-x86_64-20-20140618-sda.qcow2"}
Bob Ball527f21c2014-04-28 08:30:18 +0100371 IMAGE_URLS+=",$HEAT_CFN_IMAGE_URL"
372 ;;
373 *)
374 ;;
375 esac
Steve Baker8c1b95e2013-12-16 11:04:03 +1300376fi
Sean Daguefafb62b2014-06-30 16:49:30 -0400377
378# Trove needs a custom image for it's work
379if [[ "$ENABLED_SERVICES" =~ 'tr-api' ]]; then
380 case "$VIRT_DRIVER" in
381 libvirt|baremetal|ironic)
382 TROVE_GUEST_IMAGE_URL=${TROVE_GUEST_IMAGE_URL:-"http://tarballs.openstack.org/trove/images/ubuntu_mysql.qcow2/ubuntu_mysql.qcow2"}
383 IMAGE_URLS+=",${TROVE_GUEST_IMAGE_URL}"
384 ;;
385 *)
386 ;;
387 esac
388fi
389
Sean Dagueb6238602014-04-17 21:56:53 -0400390# Staging Area for New Images, have them here for at least 24hrs for nodepool
391# to cache them otherwise the failure rates in the gate are too high
392PRECACHE_IMAGES=$(trueorfalse False $PRECACHE_IMAGES)
393if [[ "$PRECACHE_IMAGES" == "True" ]]; then
Sean Dague4418d1f2014-04-24 16:06:51 -0400394 # staging in update for nodepool
Attila Fazekasbfcb2ff2014-06-26 12:38:20 +0200395 IMAGE_URL="http://dl.fedoraproject.org/pub/alt/openstack/20/x86_64/Fedora-x86_64-20-20140618-sda.qcow2"
396 if ! [[ "$IMAGE_URLS" =~ "$IMAGE_URL" ]]; then
397 IMAGE_URLS+=",$IMAGE_URL"
398 fi
Sean Dagueb6238602014-04-17 21:56:53 -0400399fi
Sean Daguead13ba22014-04-03 10:43:33 -0400400
Matthew Treinish4c030342013-06-20 17:02:44 -0400401# 10Gb default volume backing file size
402VOLUME_BACKING_FILE_SIZE=${VOLUME_BACKING_FILE_SIZE:-10250M}
Nachi Uenofda946e2012-10-24 17:26:02 -0700403
Dean Troyerb3236912013-03-17 15:17:05 -0500404# Name of the LVM volume group to use/create for iscsi volumes
405VOLUME_GROUP=${VOLUME_GROUP:-stack-volumes}
406VOLUME_NAME_PREFIX=${VOLUME_NAME_PREFIX:-volume-}
407INSTANCE_NAME_PREFIX=${INSTANCE_NAME_PREFIX:-instance-}
408
Dean Troyerb7490da2013-03-18 16:07:56 -0500409# Set default port for nova-objectstore
410S3_SERVICE_PORT=${S3_SERVICE_PORT:-3333}
411
412# Common network names
Nachi Uenofda946e2012-10-24 17:26:02 -0700413PRIVATE_NETWORK_NAME=${PRIVATE_NETWORK_NAME:-"private"}
Aaron Rosen640f1e42013-03-26 16:52:53 -0700414PUBLIC_NETWORK_NAME=${PUBLIC_NETWORK_NAME:-"public"}
Dean Troyer681f3fd2013-02-27 19:00:39 -0600415
416# Compatibility until it's eradicated from CI
417USE_SCREEN=${SCREEN_DEV:-$USE_SCREEN}
Sean Dague584d90e2013-03-29 14:34:53 -0400418
Jiajun Liuf02be852013-05-22 08:55:25 +0000419# Set default screen name
420SCREEN_NAME=${SCREEN_NAME:-stack}
421
Christian Berendt71d56302013-07-22 11:37:42 +0200422# Do not install packages tagged with 'testonly' by default
423INSTALL_TESTONLY_PACKAGES=${INSTALL_TESTONLY_PACKAGES:-False}
424
Sean Daguefd98edb2013-10-24 14:57:59 -0400425# Undo requirements changes by global requirements
426UNDO_REQUIREMENTS=${UNDO_REQUIREMENTS:-True}
427
Sean Dague584d90e2013-03-29 14:34:53 -0400428# Local variables:
429# mode: shell-script
430# End: