blob: 00f977d3db2eeaf08494d68c0c40b64a533d863c [file] [log] [blame]
Dean Troyerbf67c192012-09-21 15:09:37 -05001# lib/nova
Dean Troyer6d04fd72012-12-21 11:03:37 -06002# Functions to control the configuration and operation of the **Nova** service
Dean Troyerbf67c192012-09-21 15:09:37 -05003
4# Dependencies:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01005#
6# - ``functions`` file
7# - ``DEST``, ``DATA_DIR``, ``STACK_USER`` must be defined
8# - ``SERVICE_{TENANT_NAME|PASSWORD}`` must be defined
9# - ``LIBVIRT_TYPE`` must be defined
10# - ``INSTANCE_NAME_PREFIX``, ``VOLUME_NAME_PREFIX`` must be defined
11# - ``KEYSTONE_TOKEN_FORMAT`` must be defined
Dean Troyerbf67c192012-09-21 15:09:37 -050012
13# ``stack.sh`` calls the entry points in this order:
14#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010015# - install_nova
16# - configure_nova
17# - create_nova_conf
18# - init_nova
19# - start_nova
20# - stop_nova
21# - cleanup_nova
Dean Troyerbf67c192012-09-21 15:09:37 -050022
23# Save trace setting
24XTRACE=$(set +o | grep xtrace)
25set +o xtrace
26
27
28# Defaults
29# --------
30
31# Set up default directories
32NOVA_DIR=$DEST/nova
33NOVACLIENT_DIR=$DEST/python-novaclient
34NOVA_STATE_PATH=${NOVA_STATE_PATH:=$DATA_DIR/nova}
35# INSTANCES_PATH is the previous name for this
36NOVA_INSTANCES_PATH=${NOVA_INSTANCES_PATH:=${INSTANCES_PATH:=$NOVA_STATE_PATH/instances}}
Dean Troyerbc071bc2012-10-01 14:06:44 -050037NOVA_AUTH_CACHE_DIR=${NOVA_AUTH_CACHE_DIR:-/var/cache/nova}
Dean Troyerbf67c192012-09-21 15:09:37 -050038
39NOVA_CONF_DIR=/etc/nova
40NOVA_CONF=$NOVA_CONF_DIR/nova.conf
Kieran Spearfb2a3ae2013-03-11 23:55:49 +000041NOVA_CELLS_CONF=$NOVA_CONF_DIR/nova-cells.conf
42NOVA_CELLS_DB=${NOVA_CELLS_DB:-nova_cell}
43
Dean Troyerbf67c192012-09-21 15:09:37 -050044NOVA_API_PASTE_INI=${NOVA_API_PASTE_INI:-$NOVA_CONF_DIR/api-paste.ini}
45
Dean Troyer3a3a2ba2012-12-11 15:26:24 -060046# Public facing bits
47NOVA_SERVICE_HOST=${NOVA_SERVICE_HOST:-$SERVICE_HOST}
48NOVA_SERVICE_PORT=${NOVA_SERVICE_PORT:-8774}
49NOVA_SERVICE_PORT_INT=${NOVA_SERVICE_PORT_INT:-18774}
50NOVA_SERVICE_PROTOCOL=${NOVA_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
51
Dean Troyerbf67c192012-09-21 15:09:37 -050052# Support entry points installation of console scripts
53if [[ -d $NOVA_DIR/bin ]]; then
54 NOVA_BIN_DIR=$NOVA_DIR/bin
55else
Jakub Ruzicka4196d552013-01-30 15:35:54 +010056 NOVA_BIN_DIR=$(get_python_exec_prefix)
Dean Troyerbf67c192012-09-21 15:09:37 -050057fi
58
59# Set the paths of certain binaries
Vincent Untz856a11e2012-11-21 16:04:12 +010060NOVA_ROOTWRAP=$(get_rootwrap_location nova)
Dean Troyerbf67c192012-09-21 15:09:37 -050061
62# Allow rate limiting to be turned off for testing, like for Tempest
63# NOTE: Set API_RATE_LIMIT="False" to turn OFF rate limiting
64API_RATE_LIMIT=${API_RATE_LIMIT:-"True"}
65
Dan Prince24f6efa2013-10-31 10:27:58 -040066# Option to enable/disable config drive
67# NOTE: Set FORCE_CONFIG_DRIVE="False" to turn OFF config drive
68FORCE_CONFIG_DRIVE=${FORCE_CONFIG_DRIVE:-"always"}
69
Dean Troyerbf67c192012-09-21 15:09:37 -050070# Nova supports pluggable schedulers. The default ``FilterScheduler``
71# should work in most cases.
72SCHEDULER=${SCHEDULER:-nova.scheduler.filter_scheduler.FilterScheduler}
73
74QEMU_CONF=/etc/libvirt/qemu.conf
75
Dean Troyerb7490da2013-03-18 16:07:56 -050076NOVNC_DIR=$DEST/noVNC
77SPICE_DIR=$DEST/spice-html5
78
Dean Troyer8c032d12013-09-23 13:53:13 -050079# Set default defaults here as some hypervisor drivers override these
80PUBLIC_INTERFACE_DEFAULT=br100
81GUEST_INTERFACE_DEFAULT=eth0
82FLAT_NETWORK_BRIDGE_DEFAULT=br100
83
84# Get hypervisor configuration
85# ----------------------------
86
87NOVA_PLUGINS=$TOP_DIR/lib/nova_plugins
88if is_service_enabled nova && [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
89 # Load plugin
90 source $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER
91fi
92
Dean Troyerbf67c192012-09-21 15:09:37 -050093
Dean Troyerb3236912013-03-17 15:17:05 -050094# Nova Network Configuration
95# --------------------------
96
Dean Troyerb3236912013-03-17 15:17:05 -050097NETWORK_MANAGER=${NETWORK_MANAGER:-${NET_MAN:-FlatDHCPManager}}
98PUBLIC_INTERFACE=${PUBLIC_INTERFACE:-$PUBLIC_INTERFACE_DEFAULT}
99VLAN_INTERFACE=${VLAN_INTERFACE:-$GUEST_INTERFACE_DEFAULT}
100FLAT_NETWORK_BRIDGE=${FLAT_NETWORK_BRIDGE:-$FLAT_NETWORK_BRIDGE_DEFAULT}
101EC2_DMZ_HOST=${EC2_DMZ_HOST:-$SERVICE_HOST}
102
103# If you are using the FlatDHCP network mode on multiple hosts, set the
104# ``FLAT_INTERFACE`` variable but make sure that the interface doesn't already
105# have an IP or you risk breaking things.
106#
107# **DHCP Warning**: If your flat interface device uses DHCP, there will be a
108# hiccup while the network is moved from the flat interface to the flat network
109# bridge. This will happen when you launch your first instance. Upon launch
110# you will lose all connectivity to the node, and the VM launch will probably
111# fail.
112#
113# If you are running on a single node and don't need to access the VMs from
114# devices other than that node, you can set ``FLAT_INTERFACE=``
115# This will stop nova from bridging any interfaces into ``FLAT_NETWORK_BRIDGE``.
Davanum Srinivasb93b74c2013-03-21 21:25:05 -0400116FLAT_INTERFACE=${FLAT_INTERFACE:-$GUEST_INTERFACE_DEFAULT}
Dean Troyerb3236912013-03-17 15:17:05 -0500117
118# ``MULTI_HOST`` is a mode where each compute node runs its own network node. This
119# allows network operations and routing for a VM to occur on the server that is
120# running the VM - removing a SPOF and bandwidth bottleneck.
121MULTI_HOST=`trueorfalse False $MULTI_HOST`
122
123# Test floating pool and range are used for testing. They are defined
124# here until the admin APIs can replace nova-manage
125TEST_FLOATING_POOL=${TEST_FLOATING_POOL:-test}
126TEST_FLOATING_RANGE=${TEST_FLOATING_RANGE:-192.168.253.0/29}
127
128
Dean Troyercc6b4432013-04-08 15:38:03 -0500129# Functions
130# ---------
Dean Troyerbf67c192012-09-21 15:09:37 -0500131
Dean Troyerbf67c192012-09-21 15:09:37 -0500132# Helper to clean iptables rules
133function clean_iptables() {
134 # Delete rules
135 sudo iptables -S -v | sed "s/-c [0-9]* [0-9]* //g" | grep "nova" | grep "\-A" | sed "s/-A/-D/g" | awk '{print "sudo iptables",$0}' | bash
136 # Delete nat rules
137 sudo iptables -S -v -t nat | sed "s/-c [0-9]* [0-9]* //g" | grep "nova" | grep "\-A" | sed "s/-A/-D/g" | awk '{print "sudo iptables -t nat",$0}' | bash
138 # Delete chains
139 sudo iptables -S -v | sed "s/-c [0-9]* [0-9]* //g" | grep "nova" | grep "\-N" | sed "s/-N/-X/g" | awk '{print "sudo iptables",$0}' | bash
140 # Delete nat chains
141 sudo iptables -S -v -t nat | sed "s/-c [0-9]* [0-9]* //g" | grep "nova" | grep "\-N" | sed "s/-N/-X/g" | awk '{print "sudo iptables -t nat",$0}' | bash
142}
143
144# cleanup_nova() - Remove residual data files, anything left over from previous
145# runs that a clean run would need to clean up
146function cleanup_nova() {
147 if is_service_enabled n-cpu; then
148 # Clean iptables from previous runs
149 clean_iptables
150
151 # Destroy old instances
152 instances=`sudo virsh list --all | grep $INSTANCE_NAME_PREFIX | sed "s/.*\($INSTANCE_NAME_PREFIX[0-9a-fA-F]*\).*/\1/g"`
153 if [ ! "$instances" = "" ]; then
154 echo $instances | xargs -n1 sudo virsh destroy || true
Daniel P. Berranged52008a2013-05-20 15:03:43 +0100155 echo $instances | xargs -n1 sudo virsh undefine --managed-save || true
Dean Troyerbf67c192012-09-21 15:09:37 -0500156 fi
157
158 # Logout and delete iscsi sessions
Dan Smithc0fad2b2013-03-28 12:22:25 -0700159 tgts=$(sudo iscsiadm --mode node | grep $VOLUME_NAME_PREFIX | cut -d ' ' -f2)
160 for target in $tgts; do
161 sudo iscsiadm --mode node -T $target --logout || true
162 done
163 sudo iscsiadm --mode node --op delete || true
Dean Troyerbf67c192012-09-21 15:09:37 -0500164
165 # Clean out the instances directory.
166 sudo rm -rf $NOVA_INSTANCES_PATH/*
167 fi
Dean Troyer995eb922013-03-07 16:11:40 -0600168
169 sudo rm -rf $NOVA_STATE_PATH $NOVA_AUTH_CACHE_DIR
Dean Troyer2aa2a892013-08-04 19:53:19 -0500170
171 # NOTE(dtroyer): This really should be called from here but due to the way
172 # nova abuses the _cleanup() function we're moving it
173 # directly into cleanup.sh until this can be fixed.
174 #if is_service_enabled n-cpu && [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
175 # cleanup_nova_hypervisor
176 #fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500177}
178
Dean Troyerbf67c192012-09-21 15:09:37 -0500179# configure_nova_rootwrap() - configure Nova's rootwrap
180function configure_nova_rootwrap() {
181 # Deploy new rootwrap filters files (owned by root).
182 # Wipe any existing rootwrap.d files first
183 if [[ -d $NOVA_CONF_DIR/rootwrap.d ]]; then
184 sudo rm -rf $NOVA_CONF_DIR/rootwrap.d
185 fi
186 # Deploy filters to /etc/nova/rootwrap.d
187 sudo mkdir -m 755 $NOVA_CONF_DIR/rootwrap.d
188 sudo cp $NOVA_DIR/etc/nova/rootwrap.d/*.filters $NOVA_CONF_DIR/rootwrap.d
189 sudo chown -R root:root $NOVA_CONF_DIR/rootwrap.d
190 sudo chmod 644 $NOVA_CONF_DIR/rootwrap.d/*
191 # Set up rootwrap.conf, pointing to /etc/nova/rootwrap.d
192 sudo cp $NOVA_DIR/etc/nova/rootwrap.conf $NOVA_CONF_DIR/
193 sudo sed -e "s:^filters_path=.*$:filters_path=$NOVA_CONF_DIR/rootwrap.d:" -i $NOVA_CONF_DIR/rootwrap.conf
194 sudo chown root:root $NOVA_CONF_DIR/rootwrap.conf
195 sudo chmod 0644 $NOVA_CONF_DIR/rootwrap.conf
196 # Specify rootwrap.conf as first parameter to nova-rootwrap
197 ROOTWRAP_SUDOER_CMD="$NOVA_ROOTWRAP $NOVA_CONF_DIR/rootwrap.conf *"
198
199 # Set up the rootwrap sudoers for nova
200 TEMPFILE=`mktemp`
201 echo "$USER ALL=(root) NOPASSWD: $ROOTWRAP_SUDOER_CMD" >$TEMPFILE
202 chmod 0440 $TEMPFILE
203 sudo chown root:root $TEMPFILE
204 sudo mv $TEMPFILE /etc/sudoers.d/nova-rootwrap
205}
206
207# configure_nova() - Set config files, create data dirs, etc
208function configure_nova() {
Dean Troyerbf67c192012-09-21 15:09:37 -0500209 # Put config files in ``/etc/nova`` for everyone to find
210 if [[ ! -d $NOVA_CONF_DIR ]]; then
211 sudo mkdir -p $NOVA_CONF_DIR
212 fi
Attila Fazekas91b8d132013-01-06 22:40:09 +0100213 sudo chown $STACK_USER $NOVA_CONF_DIR
Dean Troyerbf67c192012-09-21 15:09:37 -0500214
215 cp -p $NOVA_DIR/etc/nova/policy.json $NOVA_CONF_DIR
216
217 configure_nova_rootwrap
218
219 if is_service_enabled n-api; then
Dean Troyerbf67c192012-09-21 15:09:37 -0500220 # Remove legacy paste config if present
221 rm -f $NOVA_DIR/bin/nova-api-paste.ini
222
223 # Get the sample configuration file in place
224 cp $NOVA_DIR/etc/nova/api-paste.ini $NOVA_CONF_DIR
225
Dan Prince741fc5c2013-10-16 17:48:16 -0400226 # Comment out the keystone configs in Nova's api-paste.ini.
227 # We are using nova.conf to configure this instead.
228 inicomment $NOVA_API_PASTE_INI filter:authtoken auth_host
Dan Princeb245c5d2013-10-30 15:11:08 -0400229 inicomment $NOVA_API_PASTE_INI filter:authtoken auth_protocol
Dan Prince741fc5c2013-10-16 17:48:16 -0400230 inicomment $NOVA_API_PASTE_INI filter:authtoken admin_tenant_name
231 inicomment $NOVA_API_PASTE_INI filter:authtoken admin_user
232 inicomment $NOVA_API_PASTE_INI filter:authtoken admin_password
Dean Troyerbf67c192012-09-21 15:09:37 -0500233 fi
234
Dan Prince741fc5c2013-10-16 17:48:16 -0400235 inicomment $NOVA_API_PASTE_INI filter:authtoken signing_dir
Dean Troyerbc071bc2012-10-01 14:06:44 -0500236
Dean Troyerbf67c192012-09-21 15:09:37 -0500237 if is_service_enabled n-cpu; then
238 # Force IP forwarding on, just on case
239 sudo sysctl -w net.ipv4.ip_forward=1
240
Bob Ballb1e49bf2013-05-30 16:47:19 +0100241 if [[ "$VIRT_DRIVER" = 'libvirt' ]]; then
242 # Attempt to load modules: network block device - used to manage qcow images
243 sudo modprobe nbd || true
Dean Troyerbf67c192012-09-21 15:09:37 -0500244
Bob Ballb1e49bf2013-05-30 16:47:19 +0100245 # Check for kvm (hardware based virtualization). If unable to initialize
246 # kvm, we drop back to the slower emulation mode (qemu). Note: many systems
247 # come with hardware virtualization disabled in BIOS.
248 if [[ "$LIBVIRT_TYPE" == "kvm" ]]; then
249 sudo modprobe kvm || true
250 if [ ! -e /dev/kvm ]; then
251 echo "WARNING: Switching to QEMU"
252 LIBVIRT_TYPE=qemu
253 if which selinuxenabled 2>&1 > /dev/null && selinuxenabled; then
254 # https://bugzilla.redhat.com/show_bug.cgi?id=753589
255 sudo setsebool virt_use_execmem on
256 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500257 fi
258 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500259
Bob Ballb1e49bf2013-05-30 16:47:19 +0100260 # Install and configure **LXC** if specified. LXC is another approach to
261 # splitting a system into many smaller parts. LXC uses cgroups and chroot
262 # to simulate multiple systems.
263 if [[ "$LIBVIRT_TYPE" == "lxc" ]]; then
264 if is_ubuntu; then
265 if [[ ! "$DISTRO" > natty ]]; then
266 cgline="none /cgroup cgroup cpuacct,memory,devices,cpu,freezer,blkio 0 0"
267 sudo mkdir -p /cgroup
268 if ! grep -q cgroup /etc/fstab; then
269 echo "$cgline" | sudo tee -a /etc/fstab
270 fi
271 if ! mount -n | grep -q cgroup; then
272 sudo mount /cgroup
273 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500274 fi
275 fi
276 fi
277 fi
278
Dean Troyerbf67c192012-09-21 15:09:37 -0500279 # Instance Storage
280 # ----------------
281
282 # Nova stores each instance in its own directory.
Doug Hellmanncf9eef82013-03-25 19:34:48 -0400283 sudo mkdir -p $NOVA_INSTANCES_PATH
284 sudo chown -R $STACK_USER $NOVA_INSTANCES_PATH
Dean Troyerbf67c192012-09-21 15:09:37 -0500285
286 # You can specify a different disk to be mounted and used for backing the
287 # virtual machines. If there is a partition labeled nova-instances we
288 # mount it (ext filesystems can be labeled via e2label).
289 if [ -L /dev/disk/by-label/nova-instances ]; then
290 if ! mount -n | grep -q $NOVA_INSTANCES_PATH; then
291 sudo mount -L nova-instances $NOVA_INSTANCES_PATH
Attila Fazekas91b8d132013-01-06 22:40:09 +0100292 sudo chown -R $STACK_USER $NOVA_INSTANCES_PATH
Dean Troyerbf67c192012-09-21 15:09:37 -0500293 fi
294 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500295 fi
Dean Troyer8c032d12013-09-23 13:53:13 -0500296
297 # Rebuild the config file from scratch
298 create_nova_conf
299
300 if [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
301 # Configure hypervisor plugin
302 configure_nova_hypervisor
303 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500304}
305
Dean Troyera0dce262012-12-11 16:52:37 -0600306# create_nova_accounts() - Set up common required nova accounts
307
308# Tenant User Roles
309# ------------------------------------------------------------------
310# service nova admin, [ResellerAdmin (swift only)]
311
312# Migrated from keystone_data.sh
313create_nova_accounts() {
314
315 SERVICE_TENANT=$(keystone tenant-list | awk "/ $SERVICE_TENANT_NAME / { print \$2 }")
316 ADMIN_ROLE=$(keystone role-list | awk "/ admin / { print \$2 }")
317
318 # Nova
319 if [[ "$ENABLED_SERVICES" =~ "n-api" ]]; then
320 NOVA_USER=$(keystone user-create \
321 --name=nova \
322 --pass="$SERVICE_PASSWORD" \
323 --tenant_id $SERVICE_TENANT \
324 --email=nova@example.com \
325 | grep " id " | get_field 2)
326 keystone user-role-add \
Jorge Valderrama Romerof39ee962013-09-02 17:18:40 +0200327 --tenant-id $SERVICE_TENANT \
328 --user-id $NOVA_USER \
329 --role-id $ADMIN_ROLE
Dean Troyera0dce262012-12-11 16:52:37 -0600330 if [[ "$KEYSTONE_CATALOG_BACKEND" = 'sql' ]]; then
331 NOVA_SERVICE=$(keystone service-create \
332 --name=nova \
333 --type=compute \
334 --description="Nova Compute Service" \
335 | grep " id " | get_field 2)
336 keystone endpoint-create \
337 --region RegionOne \
338 --service_id $NOVA_SERVICE \
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600339 --publicurl "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v2/\$(tenant_id)s" \
340 --adminurl "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v2/\$(tenant_id)s" \
341 --internalurl "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v2/\$(tenant_id)s"
Andrea Frittoli806233e2013-06-17 15:34:54 +0100342 NOVA_V3_SERVICE=$(keystone service-create \
343 --name=nova \
344 --type=computev3 \
345 --description="Nova Compute Service V3" \
346 | grep " id " | get_field 2)
347 keystone endpoint-create \
348 --region RegionOne \
349 --service_id $NOVA_V3_SERVICE \
350 --publicurl "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v3" \
351 --adminurl "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v3" \
352 --internalurl "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v3"
Dean Troyera0dce262012-12-11 16:52:37 -0600353 fi
354 fi
355}
356
Dean Troyerda7b8092012-10-08 18:12:14 -0500357# create_nova_conf() - Create a new nova.conf file
358function create_nova_conf() {
Dean Troyerbf67c192012-09-21 15:09:37 -0500359 # Remove legacy ``nova.conf``
360 rm -f $NOVA_DIR/bin/nova.conf
361
362 # (Re)create ``nova.conf``
Dean Troyer3cf1ffb2012-10-02 11:51:27 -0500363 rm -f $NOVA_CONF
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800364 iniset $NOVA_CONF DEFAULT verbose "True"
Ben Nemec03997942013-08-10 09:56:16 -0500365 iniset $NOVA_CONF DEFAULT debug "$ENABLE_DEBUG_LOG_LEVEL"
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800366 iniset $NOVA_CONF DEFAULT auth_strategy "keystone"
367 iniset $NOVA_CONF DEFAULT allow_resize_to_same_host "True"
368 iniset $NOVA_CONF DEFAULT api_paste_config "$NOVA_API_PASTE_INI"
369 iniset $NOVA_CONF DEFAULT rootwrap_config "$NOVA_CONF_DIR/rootwrap.conf"
Scott Moser50686e52013-07-17 11:32:35 -0400370 iniset $NOVA_CONF DEFAULT scheduler_driver "$SCHEDULER"
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800371 iniset $NOVA_CONF DEFAULT dhcpbridge_flagfile "$NOVA_CONF"
372 iniset $NOVA_CONF DEFAULT force_dhcp_release "True"
mathrock27c06952013-03-13 00:23:18 -0400373 iniset $NOVA_CONF DEFAULT fixed_range ""
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800374 iniset $NOVA_CONF DEFAULT default_floating_pool "$PUBLIC_NETWORK_NAME"
375 iniset $NOVA_CONF DEFAULT s3_host "$SERVICE_HOST"
376 iniset $NOVA_CONF DEFAULT s3_port "$S3_SERVICE_PORT"
377 iniset $NOVA_CONF DEFAULT osapi_compute_extension "nova.api.openstack.compute.contrib.standard_extensions"
378 iniset $NOVA_CONF DEFAULT my_ip "$HOST_IP"
Joe Gordon33b33182013-09-05 13:06:52 -0700379 iniset $NOVA_CONF DEFAULT osapi_compute_workers "4"
380 iniset $NOVA_CONF DEFAULT ec2_workers "4"
381 iniset $NOVA_CONF DEFAULT metadata_workers "4"
Attila Fazekas7e79d912013-03-03 12:23:04 +0100382 iniset $NOVA_CONF DEFAULT sql_connection `database_connection_url nova`
Joe Gordone095daa2013-08-29 15:45:20 -0400383 iniset $NOVA_CONF DEFAULT fatal_deprecations "True"
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800384 iniset $NOVA_CONF DEFAULT instance_name_template "${INSTANCE_NAME_PREFIX}%08x"
Chris Yeoh1b4d91b2013-06-03 16:23:01 +0930385 iniset $NOVA_CONF osapi_v3 enabled "True"
Dean Troyerbf67c192012-09-21 15:09:37 -0500386
Ian Wienand00fd79d2013-06-06 11:19:16 +1000387 if is_fedora; then
388 # nova defaults to /usr/local/bin, but fedora pip likes to
389 # install things in /usr/bin
390 iniset $NOVA_CONF DEFAULT bindir "/usr/bin"
391 fi
392
Dean Troyerbf67c192012-09-21 15:09:37 -0500393 if is_service_enabled n-api; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800394 iniset $NOVA_CONF DEFAULT enabled_apis "$NOVA_ENABLED_APIS"
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600395 if is_service_enabled tls-proxy; then
396 # Set the service port for a proxy to take the original
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800397 iniset $NOVA_CONF DEFAULT osapi_compute_listen_port "$NOVA_SERVICE_PORT_INT"
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600398 fi
Dan Prince741fc5c2013-10-16 17:48:16 -0400399
400 # Add keystone authtoken configuration
401
402 iniset $NOVA_CONF keystone_authtoken auth_host $KEYSTONE_AUTH_HOST
Dan Princeb245c5d2013-10-30 15:11:08 -0400403 iniset $NOVA_CONF keystone_authtoken auth_protocol $KEYSTONE_AUTH_PROTOCOL
Dan Prince741fc5c2013-10-16 17:48:16 -0400404 iniset $NOVA_CONF keystone_authtoken admin_tenant_name $SERVICE_TENANT_NAME
405 iniset $NOVA_CONF keystone_authtoken admin_user nova
406 iniset $NOVA_CONF keystone_authtoken admin_password $SERVICE_PASSWORD
Dean Troyerbf67c192012-09-21 15:09:37 -0500407 fi
Dan Prince741fc5c2013-10-16 17:48:16 -0400408
409 iniset $NOVA_CONF keystone_authtoken signing_dir $NOVA_AUTH_CACHE_DIR
410
Dean Troyerbf67c192012-09-21 15:09:37 -0500411 if is_service_enabled cinder; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800412 iniset $NOVA_CONF DEFAULT volume_api_class "nova.volume.cinder.API"
Dean Troyerbf67c192012-09-21 15:09:37 -0500413 fi
414 if [ -n "$NOVA_STATE_PATH" ]; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800415 iniset $NOVA_CONF DEFAULT state_path "$NOVA_STATE_PATH"
416 iniset $NOVA_CONF DEFAULT lock_path "$NOVA_STATE_PATH"
Dean Troyerbf67c192012-09-21 15:09:37 -0500417 fi
418 if [ -n "$NOVA_INSTANCES_PATH" ]; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800419 iniset $NOVA_CONF DEFAULT instances_path "$NOVA_INSTANCES_PATH"
Dean Troyerbf67c192012-09-21 15:09:37 -0500420 fi
421 if [ "$MULTI_HOST" != "False" ]; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800422 iniset $NOVA_CONF DEFAULT multi_host "True"
423 iniset $NOVA_CONF DEFAULT send_arp_for_ha "True"
Dean Troyerbf67c192012-09-21 15:09:37 -0500424 fi
425 if [ "$SYSLOG" != "False" ]; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800426 iniset $NOVA_CONF DEFAULT use_syslog "True"
Dean Troyerbf67c192012-09-21 15:09:37 -0500427 fi
428 if [ "$API_RATE_LIMIT" != "True" ]; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800429 iniset $NOVA_CONF DEFAULT api_rate_limit "False"
Dean Troyerbf67c192012-09-21 15:09:37 -0500430 fi
Dan Prince24f6efa2013-10-31 10:27:58 -0400431 if [ "$FORCE_CONFIG_DRIVE" != "False" ]; then
432 iniset $NOVA_CONF DEFAULT force_config_drive "$FORCE_CONFIG_DRIVE"
433 fi
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700434 # Format logging
Dean Troyerbf67c192012-09-21 15:09:37 -0500435 if [ "$LOG_COLOR" == "True" ] && [ "$SYSLOG" == "False" ]; then
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700436 setup_colorized_logging $NOVA_CONF DEFAULT
Dean Troyerbf67c192012-09-21 15:09:37 -0500437 else
438 # Show user_name and project_name instead of user_id and project_id
Joe Gordon07db7132013-01-30 13:07:25 -0800439 iniset $NOVA_CONF DEFAULT logging_context_format_string "%(asctime)s.%(msecs)03d %(levelname)s %(name)s [%(request_id)s %(user_name)s %(project_name)s] %(instance)s%(message)s"
Dean Troyerbf67c192012-09-21 15:09:37 -0500440 fi
Eoghan Glynn1fcc6a12012-10-25 14:57:14 +0000441 if is_service_enabled ceilometer; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800442 iniset $NOVA_CONF DEFAULT instance_usage_audit "True"
443 iniset $NOVA_CONF DEFAULT instance_usage_audit_period "hour"
Julien Danjoua9787d02013-07-02 11:30:40 +0200444 iniset $NOVA_CONF DEFAULT notify_on_state_change "vm_and_task_state"
Thomas Maddoxfa181c32013-09-25 20:10:22 +0000445 iniset $NOVA_CONF DEFAULT notification_driver "nova.openstack.common.notifier.rpc_notifier"
Eoghan Glynn1fcc6a12012-10-25 14:57:14 +0000446 fi
447
Dean Troyerbf67c192012-09-21 15:09:37 -0500448 # Provide some transition from ``EXTRA_FLAGS`` to ``EXTRA_OPTS``
449 if [[ -z "$EXTRA_OPTS" && -n "$EXTRA_FLAGS" ]]; then
450 EXTRA_OPTS=$EXTRA_FLAGS
451 fi
452
453 # Define extra nova conf flags by defining the array ``EXTRA_OPTS``.
454 # For Example: ``EXTRA_OPTS=(foo=true bar=2)``
455 for I in "${EXTRA_OPTS[@]}"; do
Dean Troyerdff95122013-01-10 20:51:28 -0600456 # Replace the first '=' with ' ' for iniset syntax
457 iniset $NOVA_CONF DEFAULT ${I/=/ }
Dean Troyerbf67c192012-09-21 15:09:37 -0500458 done
Dean Troyerb3236912013-03-17 15:17:05 -0500459
460 # All nova-compute workers need to know the vnc configuration options
461 # These settings don't hurt anything if n-xvnc and n-novnc are disabled
462 if is_service_enabled n-cpu; then
463 NOVNCPROXY_URL=${NOVNCPROXY_URL:-"http://$SERVICE_HOST:6080/vnc_auto.html"}
464 iniset $NOVA_CONF DEFAULT novncproxy_base_url "$NOVNCPROXY_URL"
465 XVPVNCPROXY_URL=${XVPVNCPROXY_URL:-"http://$SERVICE_HOST:6081/console"}
466 iniset $NOVA_CONF DEFAULT xvpvncproxy_base_url "$XVPVNCPROXY_URL"
467 SPICEHTML5PROXY_URL=${SPICEHTML5PROXY_URL:-"http://$SERVICE_HOST:6082/spice_auto.html"}
468 iniset $NOVA_CONF spice html5proxy_base_url "$SPICEHTML5PROXY_URL"
469 fi
Dean Troyerb3236912013-03-17 15:17:05 -0500470
Dean Troyercc6b4432013-04-08 15:38:03 -0500471 if is_service_enabled n-novnc || is_service_enabled n-xvnc; then
Sean Dague101b4242013-10-22 08:47:11 -0400472 # Address on which instance vncservers will listen on compute hosts.
473 # For multi-host, this should be the management ip of the compute host.
474 VNCSERVER_LISTEN=${VNCSERVER_LISTEN=127.0.0.1}
475 VNCSERVER_PROXYCLIENT_ADDRESS=${VNCSERVER_PROXYCLIENT_ADDRESS=127.0.0.1}
476 iniset $NOVA_CONF DEFAULT vnc_enabled true
477 iniset $NOVA_CONF DEFAULT vncserver_listen "$VNCSERVER_LISTEN"
478 iniset $NOVA_CONF DEFAULT vncserver_proxyclient_address "$VNCSERVER_PROXYCLIENT_ADDRESS"
Dean Troyerb3236912013-03-17 15:17:05 -0500479 else
Sean Dague101b4242013-10-22 08:47:11 -0400480 iniset $NOVA_CONF DEFAULT vnc_enabled false
Dean Troyerb3236912013-03-17 15:17:05 -0500481 fi
482
483 if is_service_enabled n-spice; then
Sean Dague101b4242013-10-22 08:47:11 -0400484 # Address on which instance spiceservers will listen on compute hosts.
485 # For multi-host, this should be the management ip of the compute host.
486 SPICESERVER_PROXYCLIENT_ADDRESS=${SPICESERVER_PROXYCLIENT_ADDRESS=127.0.0.1}
487 SPICESERVER_LISTEN=${SPICESERVER_LISTEN=127.0.0.1}
488 iniset $NOVA_CONF spice enabled true
489 iniset $NOVA_CONF spice server_listen "$SPICESERVER_LISTEN"
490 iniset $NOVA_CONF spice server_proxyclient_address "$SPICESERVER_PROXYCLIENT_ADDRESS"
Dean Troyerb3236912013-03-17 15:17:05 -0500491 else
Sean Dague101b4242013-10-22 08:47:11 -0400492 iniset $NOVA_CONF spice enabled false
Dean Troyerb3236912013-03-17 15:17:05 -0500493 fi
494
495 iniset $NOVA_CONF DEFAULT ec2_dmz_host "$EC2_DMZ_HOST"
496 iniset_rpc_backend nova $NOVA_CONF DEFAULT
497 iniset $NOVA_CONF DEFAULT glance_api_servers "$GLANCE_HOSTPORT"
Dean Troyerda7b8092012-10-08 18:12:14 -0500498}
Dean Troyerbf67c192012-09-21 15:09:37 -0500499
Kieran Spearfb2a3ae2013-03-11 23:55:49 +0000500function init_nova_cells() {
501 if is_service_enabled n-cell; then
502 cp $NOVA_CONF $NOVA_CELLS_CONF
503 iniset $NOVA_CELLS_CONF DEFAULT sql_connection `database_connection_url $NOVA_CELLS_DB`
504 iniset $NOVA_CELLS_CONF DEFAULT rabbit_virtual_host child_cell
505 iniset $NOVA_CELLS_CONF DEFAULT dhcpbridge_flagfile $NOVA_CELLS_CONF
506 iniset $NOVA_CELLS_CONF cells enable True
Chris Behrensc62c2b92013-07-24 03:56:13 -0700507 iniset $NOVA_CELLS_CONF cells cell_type compute
Kieran Spearfb2a3ae2013-03-11 23:55:49 +0000508 iniset $NOVA_CELLS_CONF cells name child
509
Kieran Spearfb2a3ae2013-03-11 23:55:49 +0000510 iniset $NOVA_CONF cells enable True
Chris Behrensc62c2b92013-07-24 03:56:13 -0700511 iniset $NOVA_CONF cells cell_type api
Kieran Spearfb2a3ae2013-03-11 23:55:49 +0000512 iniset $NOVA_CONF cells name region
513
514 if is_service_enabled n-api-meta; then
515 NOVA_ENABLED_APIS=$(echo $NOVA_ENABLED_APIS | sed "s/,metadata//")
516 iniset $NOVA_CONF DEFAULT enabled_apis $NOVA_ENABLED_APIS
517 iniset $NOVA_CELLS_CONF DEFAULT enabled_apis metadata
518 fi
519
520 $NOVA_BIN_DIR/nova-manage --config-file $NOVA_CELLS_CONF db sync
521 $NOVA_BIN_DIR/nova-manage --config-file $NOVA_CELLS_CONF cell create --name=region --cell_type=parent --username=guest --hostname=$RABBIT_HOST --port=5672 --password=$RABBIT_PASSWORD --virtual_host=/ --woffset=0 --wscale=1
522 $NOVA_BIN_DIR/nova-manage cell create --name=child --cell_type=child --username=guest --hostname=$RABBIT_HOST --port=5672 --password=$RABBIT_PASSWORD --virtual_host=child_cell --woffset=0 --wscale=1
523 fi
524}
525
Dean Troyerf03bafe2013-02-12 10:58:28 -0600526# create_nova_cache_dir() - Part of the init_nova() process
527function create_nova_cache_dir() {
528 # Create cache dir
529 sudo mkdir -p $NOVA_AUTH_CACHE_DIR
530 sudo chown $STACK_USER $NOVA_AUTH_CACHE_DIR
531 rm -f $NOVA_AUTH_CACHE_DIR/*
532}
533
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900534function create_nova_conf_nova_network() {
Dean Troyerb3236912013-03-17 15:17:05 -0500535 iniset $NOVA_CONF DEFAULT network_manager "nova.network.manager.$NETWORK_MANAGER"
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800536 iniset $NOVA_CONF DEFAULT public_interface "$PUBLIC_INTERFACE"
537 iniset $NOVA_CONF DEFAULT vlan_interface "$VLAN_INTERFACE"
538 iniset $NOVA_CONF DEFAULT flat_network_bridge "$FLAT_NETWORK_BRIDGE"
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900539 if [ -n "$FLAT_INTERFACE" ]; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800540 iniset $NOVA_CONF DEFAULT flat_interface "$FLAT_INTERFACE"
Akihiro MOTOKI66afb472012-12-21 15:34:13 +0900541 fi
542}
543
Dean Troyerf03bafe2013-02-12 10:58:28 -0600544# create_nova_keys_dir() - Part of the init_nova() process
545function create_nova_keys_dir() {
546 # Create keys dir
547 sudo mkdir -p ${NOVA_STATE_PATH}/keys
548 sudo chown -R $STACK_USER ${NOVA_STATE_PATH}
549}
550
Dean Troyerda7b8092012-10-08 18:12:14 -0500551# init_nova() - Initialize databases, etc.
552function init_nova() {
Dean Troyerf03bafe2013-02-12 10:58:28 -0600553 # All nova components talk to a central database.
554 # Only do this step once on the API node for an entire cluster.
Bob Melanderc439b5d2012-12-19 14:49:34 +0100555 if is_service_enabled $DATABASE_BACKENDS && is_service_enabled n-api; then
Dean Troyerbf67c192012-09-21 15:09:37 -0500556 # (Re)create nova database
Dean Troyerbf67c192012-09-21 15:09:37 -0500557 # Explicitly use latin1: to avoid lp#829209, nova expects the database to
558 # use latin1 by default, and then upgrades the database to utf8 (see the
559 # 082_essex.py in nova)
Terry Wilson428af5a2012-11-01 16:12:39 -0400560 recreate_database nova latin1
Dean Troyerbf67c192012-09-21 15:09:37 -0500561
Dean Troyerf03bafe2013-02-12 10:58:28 -0600562 # Migrate nova database
Dean Troyerbf67c192012-09-21 15:09:37 -0500563 $NOVA_BIN_DIR/nova-manage db sync
Devananda van der Veenf35cf912012-11-12 17:58:38 -0800564
Kieran Spearfb2a3ae2013-03-11 23:55:49 +0000565 if is_service_enabled n-cell; then
566 recreate_database $NOVA_CELLS_DB latin1
567 fi
568
Devananda van der Veenf35cf912012-11-12 17:58:38 -0800569 # (Re)create nova baremetal database
570 if is_baremetal; then
571 recreate_database nova_bm latin1
572 $NOVA_BIN_DIR/nova-baremetal-manage db sync
573 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500574 fi
575
Dean Troyerf03bafe2013-02-12 10:58:28 -0600576 create_nova_cache_dir
577 create_nova_keys_dir
Dean Troyerbf67c192012-09-21 15:09:37 -0500578}
579
580# install_novaclient() - Collect source and prepare
581function install_novaclient() {
582 git_clone $NOVACLIENT_REPO $NOVACLIENT_DIR $NOVACLIENT_BRANCH
Dean Troyer253a1a32013-04-01 18:23:22 -0500583 setup_develop $NOVACLIENT_DIR
Attila Fazekasfac533e2013-08-14 16:04:01 +0200584 sudo install -D -m 0644 -o $STACK_USER {$NOVACLIENT_DIR/tools/,/etc/bash_completion.d/}nova.bash_completion
Dean Troyerbf67c192012-09-21 15:09:37 -0500585}
586
587# install_nova() - Collect source and prepare
588function install_nova() {
Dean Troyer8c032d12013-09-23 13:53:13 -0500589 if is_service_enabled n-cpu && [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
590 install_nova_hypervisor
Dean Troyerbf67c192012-09-21 15:09:37 -0500591 fi
592
593 git_clone $NOVA_REPO $NOVA_DIR $NOVA_BRANCH
Dean Troyer253a1a32013-04-01 18:23:22 -0500594 setup_develop $NOVA_DIR
Attila Fazekasfac533e2013-08-14 16:04:01 +0200595 sudo install -D -m 0644 -o $STACK_USER {$NOVA_DIR/tools/,/etc/bash_completion.d/}nova-manage.bash_completion
Dean Troyerbf67c192012-09-21 15:09:37 -0500596}
597
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600598# start_nova_api() - Start the API process ahead of other things
599function start_nova_api() {
600 # Get right service port for testing
601 local service_port=$NOVA_SERVICE_PORT
602 if is_service_enabled tls-proxy; then
603 service_port=$NOVA_SERVICE_PORT_INT
604 fi
605
606 screen_it n-api "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-api"
607 echo "Waiting for nova-api to start..."
608 if ! wait_for_service $SERVICE_TIMEOUT http://$SERVICE_HOST:$service_port; then
Sean Dague101b4242013-10-22 08:47:11 -0400609 die $LINENO "nova-api did not start"
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600610 fi
611
612 # Start proxies if enabled
613 if is_service_enabled tls-proxy; then
614 start_tls_proxy '*' $NOVA_SERVICE_PORT $NOVA_SERVICE_HOST $NOVA_SERVICE_PORT_INT &
615 fi
616}
617
Dan Smith2e159462013-10-21 13:06:11 -0700618# start_nova_compute() - Start the compute process
619function start_nova_compute() {
Chris Behrens6db29902013-10-22 09:22:36 -0700620 if is_service_enabled n-cell; then
621 local compute_cell_conf=$NOVA_CELLS_CONF
622 else
623 local compute_cell_conf=$NOVA_CONF
624 fi
Kieran Spearfb2a3ae2013-03-11 23:55:49 +0000625
Bob Ballb1e49bf2013-05-30 16:47:19 +0100626 if [[ "$VIRT_DRIVER" = 'libvirt' ]]; then
627 # The group **$LIBVIRT_GROUP** is added to the current user in this script.
628 # Use 'sg' to execute nova-compute as a member of the **$LIBVIRT_GROUP** group.
Chris Behrens6db29902013-10-22 09:22:36 -0700629 screen_it n-cpu "cd $NOVA_DIR && sg $LIBVIRT_GROUP '$NOVA_BIN_DIR/nova-compute --config-file $compute_cell_conf'"
Joe Gordon2c94ee52013-08-02 02:02:01 +0000630 elif [[ "$VIRT_DRIVER" = 'fake' ]]; then
Sean Dague101b4242013-10-22 08:47:11 -0400631 for i in `seq 1 $NUMBER_FAKE_NOVA_COMPUTE`; do
Chris Behrens6db29902013-10-22 09:22:36 -0700632 screen_it n-cpu "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-compute --config-file $compute_cell_conf"
Sean Dague101b4242013-10-22 08:47:11 -0400633 done
Bob Ballb1e49bf2013-05-30 16:47:19 +0100634 else
Dean Troyer2aa2a892013-08-04 19:53:19 -0500635 if is_service_enabled n-cpu && [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
636 start_nova_hypervisor
637 fi
Chris Behrens6db29902013-10-22 09:22:36 -0700638 screen_it n-cpu "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-compute --config-file $compute_cell_conf"
Bob Ballb1e49bf2013-05-30 16:47:19 +0100639 fi
Dan Smith2e159462013-10-21 13:06:11 -0700640}
641
642# start_nova() - Start running processes, including screen
643function start_nova_rest() {
Chris Behrens86199fc2013-10-23 02:54:53 -0700644 local api_cell_conf=$NOVA_CONF
Dan Smith2e159462013-10-21 13:06:11 -0700645 if is_service_enabled n-cell; then
Chris Behrens86199fc2013-10-23 02:54:53 -0700646 local compute_cell_conf=$NOVA_CELLS_CONF
647 else
648 local compute_cell_conf=$NOVA_CONF
Dan Smith2e159462013-10-21 13:06:11 -0700649 fi
650
Chris Behrens86199fc2013-10-23 02:54:53 -0700651 # ``screen_it`` checks ``is_service_enabled``, it is not needed here
652 screen_it n-cond "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-conductor --config-file $compute_cell_conf"
653 screen_it n-cell-region "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-cells --config-file $api_cell_conf"
654 screen_it n-cell-child "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-cells --config-file $compute_cell_conf"
Kieran Spearfb2a3ae2013-03-11 23:55:49 +0000655
Chris Behrens86199fc2013-10-23 02:54:53 -0700656 screen_it n-crt "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-cert --config-file $api_cell_conf"
657 screen_it n-net "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-network --config-file $compute_cell_conf"
658 screen_it n-sch "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-scheduler --config-file $compute_cell_conf"
659 screen_it n-api-meta "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-api-metadata --config-file $compute_cell_conf"
660
661 screen_it n-novnc "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-novncproxy --config-file $api_cell_conf --web $NOVNC_DIR"
662 screen_it n-xvnc "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-xvpvncproxy --config-file $api_cell_conf"
663 screen_it n-spice "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-spicehtml5proxy --config-file $api_cell_conf --web $SPICE_DIR"
664 screen_it n-cauth "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-consoleauth --config-file $api_cell_conf"
Dean Troyer1c6c1122013-03-27 17:40:53 -0500665
666 # Starting the nova-objectstore only if swift3 service is not enabled.
667 # Swift will act as s3 objectstore.
668 is_service_enabled swift3 || \
Chris Behrens86199fc2013-10-23 02:54:53 -0700669 screen_it n-obj "cd $NOVA_DIR && $NOVA_BIN_DIR/nova-objectstore --config-file $api_cell_conf"
Dean Troyerbf67c192012-09-21 15:09:37 -0500670}
671
Dan Smith2e159462013-10-21 13:06:11 -0700672function start_nova() {
673 start_nova_compute
674 start_nova_rest
675}
676
Dean Troyerbf67c192012-09-21 15:09:37 -0500677# stop_nova() - Stop running processes (non-screen)
678function stop_nova() {
679 # Kill the nova screen windows
Kieran Spearfb2a3ae2013-03-11 23:55:49 +0000680 # Some services are listed here twice since more than one instance
681 # of a service may be running in certain configs.
Chris Behrens86199fc2013-10-23 02:54:53 -0700682 for serv in n-api n-cpu n-crt n-net n-sch n-novnc n-xvnc n-cauth n-spice n-cond n-cell n-cell n-api-meta; do
Dean Troyerbf67c192012-09-21 15:09:37 -0500683 screen -S $SCREEN_NAME -p $serv -X kill
684 done
Dean Troyer2aa2a892013-08-04 19:53:19 -0500685 if is_service_enabled n-cpu && [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
686 stop_nova_hypervisor
687 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500688}
689
Dean Troyercc6b4432013-04-08 15:38:03 -0500690
Dean Troyerbf67c192012-09-21 15:09:37 -0500691# Restore xtrace
692$XTRACE
Sean Dague584d90e2013-03-29 14:34:53 -0400693
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100694# Tell emacs to use shell-script-mode
695## Local variables:
696## mode: shell-script
697## End: