blob: 90289b139a850b99ebf4f3473f7fb05c2e39b2e9 [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Dean Troyerbf67c192012-09-21 15:09:37 -05003# lib/nova
Dean Troyer6d04fd72012-12-21 11:03:37 -06004# Functions to control the configuration and operation of the **Nova** service
Dean Troyerbf67c192012-09-21 15:09:37 -05005
6# Dependencies:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01007#
8# - ``functions`` file
9# - ``DEST``, ``DATA_DIR``, ``STACK_USER`` must be defined
Marian Horban08abba02015-06-11 13:01:41 -040010# - ``FILES``
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010011# - ``SERVICE_{TENANT_NAME|PASSWORD}`` must be defined
12# - ``LIBVIRT_TYPE`` must be defined
13# - ``INSTANCE_NAME_PREFIX``, ``VOLUME_NAME_PREFIX`` must be defined
14# - ``KEYSTONE_TOKEN_FORMAT`` must be defined
Dean Troyerbf67c192012-09-21 15:09:37 -050015
16# ``stack.sh`` calls the entry points in this order:
17#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010018# - install_nova
19# - configure_nova
20# - create_nova_conf
21# - init_nova
22# - start_nova
23# - stop_nova
24# - cleanup_nova
Dean Troyerbf67c192012-09-21 15:09:37 -050025
26# Save trace setting
Ian Wienand523f4882015-10-13 11:03:03 +110027_XTRACE_LIB_NOVA=$(set +o | grep xtrace)
Dean Troyerbf67c192012-09-21 15:09:37 -050028set +o xtrace
29
Dean Troyerbf67c192012-09-21 15:09:37 -050030# Defaults
31# --------
32
33# Set up default directories
Sean Daguee08ab102014-11-13 17:09:28 -050034GITDIR["python-novaclient"]=$DEST/python-novaclient
Sergey Belous1258da62016-03-21 12:32:06 +030035GITDIR["os-vif"]=$DEST/os-vif
Dean Troyerbf67c192012-09-21 15:09:37 -050036NOVA_DIR=$DEST/nova
Dean Troyer4533eee2015-02-17 16:25:38 -060037
38# Nova virtual environment
39if [[ ${USE_VENV} = True ]]; then
40 PROJECT_VENV["nova"]=${NOVA_DIR}.venv
41 NOVA_BIN_DIR=${PROJECT_VENV["nova"]}/bin
42else
43 NOVA_BIN_DIR=$(get_python_exec_prefix)
44fi
45
Dean Troyerbf67c192012-09-21 15:09:37 -050046NOVA_STATE_PATH=${NOVA_STATE_PATH:=$DATA_DIR/nova}
47# INSTANCES_PATH is the previous name for this
48NOVA_INSTANCES_PATH=${NOVA_INSTANCES_PATH:=${INSTANCES_PATH:=$NOVA_STATE_PATH/instances}}
49
50NOVA_CONF_DIR=/etc/nova
51NOVA_CONF=$NOVA_CONF_DIR/nova.conf
Sean Dagueafc14c82017-07-27 07:09:48 -040052NOVA_COND_CONF=$NOVA_CONF_DIR/nova.conf
Dan Smithf3d53312017-06-08 08:22:38 -040053NOVA_CPU_CONF=$NOVA_CONF_DIR/nova-cpu.conf
Chris Dent2f27a0e2014-09-09 13:46:02 +010054NOVA_FAKE_CONF=$NOVA_CONF_DIR/nova-fake.conf
Dan Smith03786b12015-06-10 11:31:51 -070055NOVA_API_DB=${NOVA_API_DB:-nova_api}
Chris Dentb90bb1a2017-04-18 16:30:14 +000056NOVA_UWSGI=$NOVA_BIN_DIR/nova-api-wsgi
57NOVA_METADATA_UWSGI=$NOVA_BIN_DIR/nova-metadata-wsgi
58NOVA_UWSGI_CONF=$NOVA_CONF_DIR/nova-api-uwsgi.ini
59NOVA_METADATA_UWSGI_CONF=$NOVA_CONF_DIR/nova-metadata-uwsgi.ini
Kieran Spearfb2a3ae2013-03-11 23:55:49 +000060
Dan Smithf3d53312017-06-08 08:22:38 -040061# The total number of cells we expect. Must be greater than one and doesn't
62# count cell0.
63NOVA_NUM_CELLS=${NOVA_NUM_CELLS:-1}
64# Our cell index, so we know what rabbit vhost to connect to.
65# This should be in the range of 1-$NOVA_NUM_CELLS
66NOVA_CPU_CELL=${NOVA_CPU_CELL:-1}
67
Dean Troyerbf67c192012-09-21 15:09:37 -050068NOVA_API_PASTE_INI=${NOVA_API_PASTE_INI:-$NOVA_CONF_DIR/api-paste.ini}
69
Chris Dentb90bb1a2017-04-18 16:30:14 +000070# Toggle for deploying Nova-API under a wsgi server. We default to
71# true to use UWSGI, but allow False so that fall back to the
72# eventlet server can happen for grenade runs.
73# NOTE(cdent): We can adjust to remove the eventlet-base api service
74# after pike, at which time we can stop using NOVA_USE_MOD_WSGI to
75# mean "use uwsgi" because we'll be always using uwsgi.
76NOVA_USE_MOD_WSGI=${NOVA_USE_MOD_WSGI:-True}
Davanum Srinivasd5537c12015-04-30 21:10:48 -040077
Sean Daguef3b2f4c2017-04-13 10:11:48 -040078if is_service_enabled tls-proxy; then
Rob Crittenden18d47782014-03-19 17:47:42 -040079 NOVA_SERVICE_PROTOCOL="https"
Rob Crittenden18d47782014-03-19 17:47:42 -040080fi
81
Daniel P. Berrangee9870eb2016-11-10 13:03:32 +000082# Whether to use TLS for comms between the VNC/SPICE/serial proxy
83# services and the compute node
84NOVA_CONSOLE_PROXY_COMPUTE_TLS=${NOVA_CONSOLE_PROXY_COMPUTE_TLS:-False}
85
Stephen Finucane8f3e51d2021-03-02 16:18:48 +000086# Validate configuration
87if ! is_service_enabled tls-proxy && [ "$NOVA_CONSOLE_PROXY_COMPUTE_TLS" == "True" ]; then
88 die $LINENO "enabling TLS for the console proxy requires the tls-proxy service"
89fi
90
Dean Troyer3a3a2ba2012-12-11 15:26:24 -060091# Public facing bits
92NOVA_SERVICE_HOST=${NOVA_SERVICE_HOST:-$SERVICE_HOST}
93NOVA_SERVICE_PORT=${NOVA_SERVICE_PORT:-8774}
94NOVA_SERVICE_PORT_INT=${NOVA_SERVICE_PORT_INT:-18774}
95NOVA_SERVICE_PROTOCOL=${NOVA_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
Jens Harbottdc7b4292017-09-19 10:52:32 +000096NOVA_SERVICE_LISTEN_ADDRESS=${NOVA_SERVICE_LISTEN_ADDRESS:-$(ipv6_unquote $SERVICE_LISTEN_ADDRESS)}
Marian Horban08abba02015-06-11 13:01:41 -040097METADATA_SERVICE_PORT=${METADATA_SERVICE_PORT:-8775}
Slawek Kaplonskid33cdd02019-08-01 14:58:37 +020098NOVA_ENABLE_CACHE=${NOVA_ENABLE_CACHE:-True}
Dean Troyer3a3a2ba2012-12-11 15:26:24 -060099
Dan Prince24f6efa2013-10-31 10:27:58 -0400100# Option to enable/disable config drive
Dean Troyerdc97cb72015-03-28 08:20:50 -0500101# NOTE: Set ``FORCE_CONFIG_DRIVE="False"`` to turn OFF config drive
Sean Dague7682ea82016-08-18 16:19:36 -0400102FORCE_CONFIG_DRIVE=${FORCE_CONFIG_DRIVE:-"False"}
Dan Prince24f6efa2013-10-31 10:27:58 -0400103
Artom Lifshitz47058612018-05-23 10:08:56 -0400104# The following NOVA_FILTERS contains SameHostFilter and DifferentHostFilter with
Ken'ichi Ohmichie0d61112015-12-17 08:47:46 +0000105# the default filters.
Kenichi Omichi5b8656e2019-06-18 23:38:28 +0000106NOVA_FILTERS="AvailabilityZoneFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter,SameHostFilter,DifferentHostFilter"
Ken'ichi Ohmichie0d61112015-12-17 08:47:46 +0000107
Dean Troyerbf67c192012-09-21 15:09:37 -0500108QEMU_CONF=/etc/libvirt/qemu.conf
109
Dean Troyer8c032d12013-09-23 13:53:13 -0500110# Set default defaults here as some hypervisor drivers override these
111PUBLIC_INTERFACE_DEFAULT=br100
Dean Troyerdc97cb72015-03-28 08:20:50 -0500112# Set ``GUEST_INTERFACE_DEFAULT`` to some interface on the box so that
113# the default isn't completely crazy. This will match ``eth*``, ``em*``, or
114# the new ``p*`` interfaces, then basically picks the first
Sean Dague11007172014-05-28 17:30:10 -0400115# alphabetically. It's probably wrong, however it's less wrong than
Dean Troyerdc97cb72015-03-28 08:20:50 -0500116# always using ``eth0`` which doesn't exist on new Linux distros at all.
Sean Daguefdb920c2014-06-05 19:06:05 -0400117GUEST_INTERFACE_DEFAULT=$(ip link \
118 | grep 'state UP' \
119 | awk '{print $2}' \
120 | sed 's/://' \
121 | grep ^[ep] \
122 | head -1)
Dean Troyer8c032d12013-09-23 13:53:13 -0500123
Dean Troyerdc97cb72015-03-28 08:20:50 -0500124# ``NOVA_VNC_ENABLED`` can be used to forcibly enable VNC configuration.
125# In multi-node setups allows compute hosts to not run ``n-novnc``.
Sean Dague53753292014-12-04 19:38:15 -0500126NOVA_VNC_ENABLED=$(trueorfalse False NOVA_VNC_ENABLED)
Robbie Harwood (frozencemetery)4e07fdc2014-07-14 18:11:39 -0400127
Dean Troyer8c032d12013-09-23 13:53:13 -0500128# Get hypervisor configuration
129# ----------------------------
130
131NOVA_PLUGINS=$TOP_DIR/lib/nova_plugins
132if is_service_enabled nova && [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
133 # Load plugin
134 source $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER
135fi
136
Pushkar Umaranikar14e16e42016-12-09 20:20:42 +0000137# Other Nova configurations
138# ----------------------------
139
140# ``NOVA_USE_SERVICE_TOKEN`` is a mode where service token is passed along with
141# user token while communicating to external RESP API's like Neutron, Cinder
142# and Glance.
Lee Yarwoodb516efe2021-02-15 10:11:43 +0000143NOVA_USE_SERVICE_TOKEN=$(trueorfalse True NOVA_USE_SERVICE_TOKEN)
Pushkar Umaranikar14e16e42016-12-09 20:20:42 +0000144
Stephen Finucane4b8cba72019-05-21 14:17:11 +0100145# ``NOVA_ALLOW_MOVE_TO_SAME_HOST`` can be set to False in multi node DevStack,
146# where there are at least two nova-computes.
147NOVA_ALLOW_MOVE_TO_SAME_HOST=$(trueorfalse True NOVA_ALLOW_MOVE_TO_SAME_HOST)
148
Ian Wienand8213d7c2019-02-11 12:28:15 +1100149# Enable debugging levels for iscsid service (goes from 0-8)
150ISCSID_DEBUG=$(trueorfalse False ISCSID_DEBUG)
151ISCSID_DEBUG_LEVEL=${ISCSID_DEBUG_LEVEL:-4}
152
Matt Riedemannb57757a2019-06-03 16:08:09 -0400153# Format for notifications. Nova defaults to "unversioned" since Train.
154# Other options include "versioned" and "both".
155NOVA_NOTIFICATION_FORMAT=${NOVA_NOTIFICATION_FORMAT:-unversioned}
156
Matt Riedemannd51baee2019-07-12 11:51:17 -0400157# Timeout for servers to gracefully shutdown the OS during operations
158# like shelve, rescue, stop, rebuild. Defaults to 0 since the default
159# image in devstack is CirrOS.
160NOVA_SHUTDOWN_TIMEOUT=${NOVA_SHUTDOWN_TIMEOUT:-0}
161
melanie witt099a0482021-05-06 00:09:33 +0000162# Whether to use Keystone unified limits instead of legacy quota limits.
163NOVA_USE_UNIFIED_LIMITS=$(trueorfalse False NOVA_USE_UNIFIED_LIMITS)
164
Dean Troyercc6b4432013-04-08 15:38:03 -0500165# Functions
166# ---------
Dean Troyerbf67c192012-09-21 15:09:37 -0500167
Dean Troyere4fa7212014-01-15 15:04:49 -0600168# Test if any Nova services are enabled
169# is_nova_enabled
170function is_nova_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700171 [[ ,${DISABLED_SERVICES} =~ ,"nova" ]] && return 1
Dean Troyere4fa7212014-01-15 15:04:49 -0600172 [[ ,${ENABLED_SERVICES} =~ ,"n-" ]] && return 0
173 return 1
174}
175
Daniel P. Berrangee9870eb2016-11-10 13:03:32 +0000176# is_nova_console_proxy_compute_tls_enabled() - Test if the Nova Console Proxy
177# service has TLS enabled
178function is_nova_console_proxy_compute_tls_enabled {
179 [[ ${NOVA_CONSOLE_PROXY_COMPUTE_TLS} = "True" ]] && return 0
180 return 1
181}
182
Dean Troyerbf67c192012-09-21 15:09:37 -0500183# Helper to clean iptables rules
Ian Wienandaee18c72014-02-21 15:35:08 +1100184function clean_iptables {
Dean Troyerbf67c192012-09-21 15:09:37 -0500185 # Delete rules
186 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
187 # Delete nat rules
188 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
189 # Delete chains
190 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
191 # Delete nat chains
192 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
193}
194
195# cleanup_nova() - Remove residual data files, anything left over from previous
196# runs that a clean run would need to clean up
Ian Wienandaee18c72014-02-21 15:35:08 +1100197function cleanup_nova {
Dean Troyerbf67c192012-09-21 15:09:37 -0500198 if is_service_enabled n-cpu; then
199 # Clean iptables from previous runs
200 clean_iptables
201
202 # Destroy old instances
Ian Wienandada886d2015-10-07 14:06:26 +1100203 local instances
204 instances=`sudo virsh list --all | grep $INSTANCE_NAME_PREFIX | sed "s/.*\($INSTANCE_NAME_PREFIX[0-9a-fA-F]*\).*/\1/g"`
Dean Troyerbf67c192012-09-21 15:09:37 -0500205 if [ ! "$instances" = "" ]; then
206 echo $instances | xargs -n1 sudo virsh destroy || true
Kevin Zhaocfc3edc2017-02-08 10:54:29 +0800207 if ! xargs -n1 sudo virsh undefine --managed-save --nvram <<< $instances; then
208 # Can't delete with nvram flags, then just try without this flag
209 xargs -n1 sudo virsh undefine --managed-save <<< $instances
210 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500211 fi
212
213 # Logout and delete iscsi sessions
Ian Wienandada886d2015-10-07 14:06:26 +1100214 local tgts
215 tgts=$(sudo iscsiadm --mode node | grep $VOLUME_NAME_PREFIX | cut -d ' ' -f2)
Dean Troyer0038a1a2014-07-25 15:27:54 -0500216 local target
Dan Smithc0fad2b2013-03-28 12:22:25 -0700217 for target in $tgts; do
218 sudo iscsiadm --mode node -T $target --logout || true
219 done
220 sudo iscsiadm --mode node --op delete || true
Dean Troyerbf67c192012-09-21 15:09:37 -0500221
222 # Clean out the instances directory.
223 sudo rm -rf $NOVA_INSTANCES_PATH/*
224 fi
Dean Troyer995eb922013-03-07 16:11:40 -0600225
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100226 sudo rm -rf $NOVA_STATE_PATH
Dean Troyer2aa2a892013-08-04 19:53:19 -0500227
228 # NOTE(dtroyer): This really should be called from here but due to the way
229 # nova abuses the _cleanup() function we're moving it
230 # directly into cleanup.sh until this can be fixed.
231 #if is_service_enabled n-cpu && [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
232 # cleanup_nova_hypervisor
233 #fi
Marian Horban13f65572015-06-10 14:34:22 -0400234
Chris Dentb90bb1a2017-04-18 16:30:14 +0000235 stop_process "n-api"
236 stop_process "n-api-meta"
237 remove_uwsgi_config "$NOVA_UWSGI_CONF" "$NOVA_UWSGI"
238 remove_uwsgi_config "$NOVA_METADATA_UWSGI_CONF" "$NOVA_METADATA_UWSGI"
Huan Xiong63beab52018-03-23 14:42:37 +0000239
240 if [[ "$NOVA_BACKEND" == "LVM" ]]; then
241 clean_lvm_volume_group $DEFAULT_VOLUME_GROUP_NAME
242 fi
Davanum Srinivasd5537c12015-04-30 21:10:48 -0400243}
244
Dean Troyerbf67c192012-09-21 15:09:37 -0500245# configure_nova() - Set config files, create data dirs, etc
Ian Wienandaee18c72014-02-21 15:35:08 +1100246function configure_nova {
Dean Troyerbf67c192012-09-21 15:09:37 -0500247 # Put config files in ``/etc/nova`` for everyone to find
Dean Troyer8421c2b2015-03-16 13:52:19 -0500248 sudo install -d -o $STACK_USER $NOVA_CONF_DIR
Dean Troyerbf67c192012-09-21 15:09:37 -0500249
Ian Wienandc6782412015-05-14 10:01:53 +1000250 configure_rootwrap nova
Dean Troyerbf67c192012-09-21 15:09:37 -0500251
Joe Gordonea70cc92014-11-25 19:07:11 -0800252 if [[ "$ENABLED_SERVICES" =~ "n-api" ]]; then
Dean Troyerbf67c192012-09-21 15:09:37 -0500253 # Get the sample configuration file in place
254 cp $NOVA_DIR/etc/nova/api-paste.ini $NOVA_CONF_DIR
Dean Troyerbf67c192012-09-21 15:09:37 -0500255 fi
256
257 if is_service_enabled n-cpu; then
258 # Force IP forwarding on, just on case
259 sudo sysctl -w net.ipv4.ip_forward=1
260
Bob Ballb1e49bf2013-05-30 16:47:19 +0100261 if [[ "$VIRT_DRIVER" = 'libvirt' ]]; then
Bob Ballb1e49bf2013-05-30 16:47:19 +0100262 # Check for kvm (hardware based virtualization). If unable to initialize
263 # kvm, we drop back to the slower emulation mode (qemu). Note: many systems
264 # come with hardware virtualization disabled in BIOS.
265 if [[ "$LIBVIRT_TYPE" == "kvm" ]]; then
266 sudo modprobe kvm || true
267 if [ ! -e /dev/kvm ]; then
268 echo "WARNING: Switching to QEMU"
269 LIBVIRT_TYPE=qemu
Clark Boylane06d9542021-10-21 08:15:12 -0700270 LIBVIRT_CPU_MODE=custom
271 LIBVIRT_CPU_MODEL=Nehalem
Wei Jiangang91e3c1e2015-09-21 17:51:02 +0800272 if which selinuxenabled >/dev/null 2>&1 && selinuxenabled; then
Bob Ballb1e49bf2013-05-30 16:47:19 +0100273 # https://bugzilla.redhat.com/show_bug.cgi?id=753589
274 sudo setsebool virt_use_execmem on
275 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500276 fi
277 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500278
Bob Ballb1e49bf2013-05-30 16:47:19 +0100279 # Install and configure **LXC** if specified. LXC is another approach to
280 # splitting a system into many smaller parts. LXC uses cgroups and chroot
281 # to simulate multiple systems.
282 if [[ "$LIBVIRT_TYPE" == "lxc" ]]; then
283 if is_ubuntu; then
Matt Riedemanndca06dc2015-08-20 13:56:57 -0700284 # enable nbd for lxc unless you're using an lvm backend
285 # otherwise you can't boot instances
286 if [[ "$NOVA_BACKEND" != "LVM" ]]; then
287 sudo modprobe nbd
288 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500289 fi
290 fi
291 fi
292
Dean Troyerbf67c192012-09-21 15:09:37 -0500293 # Instance Storage
294 # ----------------
295
296 # Nova stores each instance in its own directory.
Dean Troyer8421c2b2015-03-16 13:52:19 -0500297 sudo install -d -o $STACK_USER $NOVA_INSTANCES_PATH
Dean Troyerbf67c192012-09-21 15:09:37 -0500298
299 # You can specify a different disk to be mounted and used for backing the
300 # virtual machines. If there is a partition labeled nova-instances we
301 # mount it (ext filesystems can be labeled via e2label).
302 if [ -L /dev/disk/by-label/nova-instances ]; then
303 if ! mount -n | grep -q $NOVA_INSTANCES_PATH; then
304 sudo mount -L nova-instances $NOVA_INSTANCES_PATH
Attila Fazekas91b8d132013-01-06 22:40:09 +0100305 sudo chown -R $STACK_USER $NOVA_INSTANCES_PATH
Dean Troyerbf67c192012-09-21 15:09:37 -0500306 fi
307 fi
Ian Wienand8213d7c2019-02-11 12:28:15 +1100308
Lee Yarwood714826d2021-10-04 18:07:17 +0100309 # Ensure each compute host uses a unique iSCSI initiator
310 echo InitiatorName=$(iscsi-iname) | sudo tee /etc/iscsi/initiatorname.iscsi
311
Ian Wienand8213d7c2019-02-11 12:28:15 +1100312 if [[ ${ISCSID_DEBUG} == "True" ]]; then
313 # Install an override that starts iscsid with debugging
314 # enabled.
315 cat > /tmp/iscsid.override <<EOF
316[Service]
317ExecStart=
318ExecStart=/usr/sbin/iscsid -d${ISCSID_DEBUG_LEVEL}
319EOF
320 sudo mkdir -p /etc/systemd/system/iscsid.service.d
321 sudo mv /tmp/iscsid.override /etc/systemd/system/iscsid.service.d/override.conf
322 sudo systemctl daemon-reload
323 fi
324
Ade Leec3b70512021-08-06 14:26:37 -0400325 # set chap algorithms. The default chap_algorithm is md5 which will
Ade Leeac958692022-01-05 16:23:46 -0500326 # not work under FIPS.
327 # FIXME(alee) For some reason, this breaks openeuler. Openeuler devs should weigh in
328 # and determine the correct solution for openeuler here
329 if ! is_openeuler; then
330 iniset -sudo /etc/iscsi/iscsid.conf DEFAULT "node.session.auth.chap_algs" "SHA3-256,SHA256"
331 fi
Ade Leec3b70512021-08-06 14:26:37 -0400332
Luigi Toscano29ab9b82019-01-22 16:23:42 +0100333 # ensure that iscsid is started, even when disabled by default
Ian Wienand8213d7c2019-02-11 12:28:15 +1100334 restart_service iscsid
Dean Troyerbf67c192012-09-21 15:09:37 -0500335 fi
Dean Troyer8c032d12013-09-23 13:53:13 -0500336
337 # Rebuild the config file from scratch
338 create_nova_conf
339
Sergey Skripnicka99b8692014-03-05 14:47:58 +0200340 if is_service_enabled n-cpu && [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
Dean Troyer8c032d12013-09-23 13:53:13 -0500341 # Configure hypervisor plugin
342 configure_nova_hypervisor
343 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500344}
345
Dean Troyera0dce262012-12-11 16:52:37 -0600346# create_nova_accounts() - Set up common required nova accounts
Chris Dent67bc8e82014-10-08 12:07:46 +0100347#
Dean Troyer42a59c22014-03-03 14:31:29 -0600348# Project User Roles
Dean Troyera0dce262012-12-11 16:52:37 -0600349# ------------------------------------------------------------------
Sean Dague7580a0c2016-02-17 06:23:36 -0500350# SERVICE_PROJECT_NAME nova admin
351# SERVICE_PROJECT_NAME nova ResellerAdmin (if Swift is enabled)
Chris Dent67bc8e82014-10-08 12:07:46 +0100352function create_nova_accounts {
Dean Troyera0dce262012-12-11 16:52:37 -0600353
Dean Troyera0dce262012-12-11 16:52:37 -0600354 # Nova
355 if [[ "$ENABLED_SERVICES" =~ "n-api" ]]; then
Bartosz Górski0abde392014-02-28 14:15:19 +0100356
Jamie Lennoxe8bc2b82015-02-10 20:38:56 +1100357 # NOTE(jamielennox): Nova doesn't need the admin role here, however neutron uses
358 # this service user when notifying nova of changes and that requires the admin role.
Jamie Lennox85ff5322015-01-28 14:28:01 +1000359 create_service_user "nova" "admin"
Bartosz Górski0abde392014-02-28 14:15:19 +0100360
Sean Dague985e9582016-02-10 07:25:24 -0500361 local nova_api_url
362 if [[ "$NOVA_USE_MOD_WSGI" == "False" ]]; then
363 nova_api_url="$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT"
364 else
365 nova_api_url="$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST/compute"
Dean Troyera0dce262012-12-11 16:52:37 -0600366 fi
Sean Dague985e9582016-02-10 07:25:24 -0500367
368 get_or_create_service "nova_legacy" "compute_legacy" "Nova Compute Service (Legacy 2.0)"
Matt Riedemannae4578b2016-04-23 01:45:40 +0000369 get_or_create_endpoint \
Sean Dague985e9582016-02-10 07:25:24 -0500370 "compute_legacy" \
371 "$REGION_NAME" \
Sean Daguebd27cc22016-04-04 09:12:24 -0400372 "$nova_api_url/v2/\$(project_id)s"
Sean Dague985e9582016-02-10 07:25:24 -0500373
374 get_or_create_service "nova" "compute" "Nova Compute Service"
Matt Riedemannae4578b2016-04-23 01:45:40 +0000375 get_or_create_endpoint \
Sean Dague985e9582016-02-10 07:25:24 -0500376 "compute" \
377 "$REGION_NAME" \
Sean Dague7f87efd2015-10-09 10:07:11 -0400378 "$nova_api_url/v2.1"
Dean Troyera0dce262012-12-11 16:52:37 -0600379 fi
Dean Troyer42a59c22014-03-03 14:31:29 -0600380
381 if is_service_enabled n-api; then
382 # Swift
383 if is_service_enabled swift; then
384 # Nova needs ResellerAdmin role to download images when accessing
385 # swift through the s3 api.
Jamie Lennoxcbcbd8f2016-01-21 16:08:14 -0600386 get_or_add_user_project_role ResellerAdmin nova $SERVICE_PROJECT_NAME $SERVICE_DOMAIN_NAME $SERVICE_DOMAIN_NAME
Dean Troyer42a59c22014-03-03 14:31:29 -0600387 fi
Dean Troyer42a59c22014-03-03 14:31:29 -0600388 fi
389
390 # S3
Kota Tsuyuzaki070e4ee2018-09-13 03:08:19 +0900391 if is_service_enabled s3api; then
Sean Dague985e9582016-02-10 07:25:24 -0500392 get_or_create_service "s3" "s3" "S3"
Matt Riedemannae4578b2016-04-23 01:45:40 +0000393 get_or_create_endpoint \
Sean Dague985e9582016-02-10 07:25:24 -0500394 "s3" \
395 "$REGION_NAME" \
396 "http://$SERVICE_HOST:$S3_SERVICE_PORT" \
397 "http://$SERVICE_HOST:$S3_SERVICE_PORT" \
398 "http://$SERVICE_HOST:$S3_SERVICE_PORT"
Dean Troyer42a59c22014-03-03 14:31:29 -0600399 fi
melanie witt099a0482021-05-06 00:09:33 +0000400
401 # Unified limits
402 if is_service_enabled n-api; then
403 if [[ "$NOVA_USE_UNIFIED_LIMITS" = True ]]; then
404 configure_nova_unified_limits
405 fi
406 fi
Dean Troyera0dce262012-12-11 16:52:37 -0600407}
408
Dean Troyerda7b8092012-10-08 18:12:14 -0500409# create_nova_conf() - Create a new nova.conf file
Ian Wienandaee18c72014-02-21 15:35:08 +1100410function create_nova_conf {
Dean Troyerbf67c192012-09-21 15:09:37 -0500411 # Remove legacy ``nova.conf``
412 rm -f $NOVA_DIR/bin/nova.conf
413
414 # (Re)create ``nova.conf``
Dean Troyer3cf1ffb2012-10-02 11:51:27 -0500415 rm -f $NOVA_CONF
Ben Nemec03997942013-08-10 09:56:16 -0500416 iniset $NOVA_CONF DEFAULT debug "$ENABLE_DEBUG_LOG_LEVEL"
Joe Gordon18d62982014-10-28 13:37:15 -0700417 if [ "$NOVA_ALLOW_MOVE_TO_SAME_HOST" == "True" ]; then
418 iniset $NOVA_CONF DEFAULT allow_resize_to_same_host "True"
Joe Gordon18d62982014-10-28 13:37:15 -0700419 fi
Matt Riedemann38880982016-04-09 21:42:24 -0400420 iniset $NOVA_CONF wsgi api_paste_config "$NOVA_API_PASTE_INI"
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800421 iniset $NOVA_CONF DEFAULT rootwrap_config "$NOVA_CONF_DIR/rootwrap.conf"
Artom Lifshitz47058612018-05-23 10:08:56 -0400422 iniset $NOVA_CONF filter_scheduler enabled_filters "$NOVA_FILTERS"
Stephen Finucane65102e72020-05-27 14:24:09 +0100423 iniset $NOVA_CONF scheduler workers "$API_WORKERS"
Stephen Finucane283e86f2019-05-22 10:38:28 +0100424 iniset $NOVA_CONF neutron default_floating_pool "$PUBLIC_NETWORK_NAME"
Brian Haley180f5eb2015-06-16 13:14:31 -0400425 if [[ $SERVICE_IP_VERSION == 6 ]]; then
426 iniset $NOVA_CONF DEFAULT my_ip "$HOST_IPV6"
Brian Haley180f5eb2015-06-16 13:14:31 -0400427 else
428 iniset $NOVA_CONF DEFAULT my_ip "$HOST_IP"
429 fi
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800430 iniset $NOVA_CONF DEFAULT instance_name_template "${INSTANCE_NAME_PREFIX}%08x"
Brian Haley180f5eb2015-06-16 13:14:31 -0400431 iniset $NOVA_CONF DEFAULT osapi_compute_listen "$NOVA_SERVICE_LISTEN_ADDRESS"
Brian Haley180f5eb2015-06-16 13:14:31 -0400432 iniset $NOVA_CONF DEFAULT metadata_listen "$NOVA_SERVICE_LISTEN_ADDRESS"
Matt Riedemannd51baee2019-07-12 11:51:17 -0400433 iniset $NOVA_CONF DEFAULT shutdown_timeout $NOVA_SHUTDOWN_TIMEOUT
Dean Troyerbf67c192012-09-21 15:09:37 -0500434
Kaitlin Farr8dd918c2017-10-24 09:34:03 -0400435 iniset $NOVA_CONF key_manager backend nova.keymgr.conf_key_mgr.ConfKeyManager
Kaitlin Farra5b72b02016-01-26 22:46:13 -0500436
Ralf Haferkamp55dd68a2014-04-11 17:08:28 +0200437 if is_fedora || is_suse; then
438 # nova defaults to /usr/local/bin, but fedora and suse pip like to
Ian Wienand00fd79d2013-06-06 11:19:16 +1000439 # install things in /usr/bin
440 iniset $NOVA_CONF DEFAULT bindir "/usr/bin"
441 fi
442
Slawek Kaplonskid33cdd02019-08-01 14:58:37 +0200443 # only setup database connections and cache backend if there are services
444 # that require them running on the host. The ensures that n-cpu doesn't
Sean Dague1b457c92017-01-18 07:53:33 -0500445 # leak a need to use the db in a multinode scenario.
446 if is_service_enabled n-api n-cond n-sched; then
Sean Dague5adfef02017-07-26 11:14:37 -0400447 # If we're in multi-tier cells mode, we want our control services pointing
448 # at cell0 instead of cell1 to ensure isolation. If not, we point everything
449 # at the main database like normal.
450 if [[ "$CELLSV2_SETUP" == "singleconductor" ]]; then
451 local db="nova_cell1"
452 else
453 local db="nova_cell0"
Matt Riedemannab980ce2017-08-01 16:38:42 -0400454 # When in superconductor mode, nova-compute can't send instance
455 # info updates to the scheduler, so just disable it.
456 iniset $NOVA_CONF filter_scheduler track_instance_changes False
Sean Dague5adfef02017-07-26 11:14:37 -0400457 fi
458
459 iniset $NOVA_CONF database connection `database_connection_url $db`
Sean Dague1b457c92017-01-18 07:53:33 -0500460 iniset $NOVA_CONF api_database connection `database_connection_url nova_api`
Slawek Kaplonskid33cdd02019-08-01 14:58:37 +0200461
462 # Cache related settings
463 # Those settings aren't really needed in n-cpu thus it is configured
464 # only on nodes which runs controller services
465 iniset $NOVA_CONF cache enabled $NOVA_ENABLE_CACHE
466 iniset $NOVA_CONF cache backend $CACHE_BACKEND
467 iniset $NOVA_CONF cache memcache_servers $MEMCACHE_SERVERS
Sean Dague1b457c92017-01-18 07:53:33 -0500468 fi
469
Dean Troyerbf67c192012-09-21 15:09:37 -0500470 if is_service_enabled n-api; then
Joe Gordond73af872014-02-06 15:33:52 -0800471 if is_service_enabled n-api-meta; then
472 # If running n-api-meta as a separate service
473 NOVA_ENABLED_APIS=$(echo $NOVA_ENABLED_APIS | sed "s/,metadata//")
474 fi
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800475 iniset $NOVA_CONF DEFAULT enabled_apis "$NOVA_ENABLED_APIS"
Chris Dentb90bb1a2017-04-18 16:30:14 +0000476 if is_service_enabled tls-proxy && [ "$NOVA_USE_MOD_WSGI" == "False" ]; then
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600477 # Set the service port for a proxy to take the original
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800478 iniset $NOVA_CONF DEFAULT osapi_compute_listen_port "$NOVA_SERVICE_PORT_INT"
Rob Crittenden6254d5f2015-06-05 11:58:15 -0400479 iniset $NOVA_CONF DEFAULT osapi_compute_link_prefix $NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600480 fi
Dan Prince741fc5c2013-10-16 17:48:16 -0400481
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100482 configure_keystone_authtoken_middleware $NOVA_CONF nova
Dean Troyerbf67c192012-09-21 15:09:37 -0500483 fi
Dan Prince741fc5c2013-10-16 17:48:16 -0400484
Rob Crittenden18d47782014-03-19 17:47:42 -0400485 if is_service_enabled cinder; then
Matt Riedemann594885c2019-09-27 16:45:09 -0400486 configure_cinder_access
Rob Crittenden18d47782014-03-19 17:47:42 -0400487 fi
488
Dean Troyerbf67c192012-09-21 15:09:37 -0500489 if [ -n "$NOVA_STATE_PATH" ]; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800490 iniset $NOVA_CONF DEFAULT state_path "$NOVA_STATE_PATH"
Joe Gordon23d6d502015-03-06 15:24:22 -0800491 iniset $NOVA_CONF oslo_concurrency lock_path "$NOVA_STATE_PATH"
Dean Troyerbf67c192012-09-21 15:09:37 -0500492 fi
493 if [ -n "$NOVA_INSTANCES_PATH" ]; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800494 iniset $NOVA_CONF DEFAULT instances_path "$NOVA_INSTANCES_PATH"
Dean Troyerbf67c192012-09-21 15:09:37 -0500495 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500496 if [ "$SYSLOG" != "False" ]; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800497 iniset $NOVA_CONF DEFAULT use_syslog "True"
Dean Troyerbf67c192012-09-21 15:09:37 -0500498 fi
Dan Prince24f6efa2013-10-31 10:27:58 -0400499 if [ "$FORCE_CONFIG_DRIVE" != "False" ]; then
500 iniset $NOVA_CONF DEFAULT force_config_drive "$FORCE_CONFIG_DRIVE"
501 fi
Dirk Muellerc1144492018-04-11 21:33:50 +0200502
503 # nova defaults to genisoimage but only mkisofs is available for 15.0+
Alfredo Moralejo5ea4c3c2021-11-16 15:13:03 +0100504 # rhel provides mkisofs symlink to genisoimage or xorriso appropiately
505 if is_suse || is_fedora; then
Dirk Muellerc1144492018-04-11 21:33:50 +0200506 iniset $NOVA_CONF DEFAULT mkisofs_cmd /usr/bin/mkisofs
507 fi
508
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700509 # Format logging
Chris Dentb90bb1a2017-04-18 16:30:14 +0000510 setup_logging $NOVA_CONF
Sean Dague9751be62016-04-05 12:08:57 -0400511
Matt Riedemann21221d12018-03-06 10:08:36 -0500512 iniset $NOVA_CONF upgrade_levels compute "auto"
513
Lee Yarwoodfc8ef862021-03-09 17:32:25 +0000514 if is_service_enabled n-api; then
515 write_uwsgi_config "$NOVA_UWSGI_CONF" "$NOVA_UWSGI" "/compute"
516 fi
517
518 if is_service_enabled n-api-meta; then
519 write_uwsgi_config "$NOVA_METADATA_UWSGI_CONF" "$NOVA_METADATA_UWSGI" "" "$SERVICE_LISTEN_ADDRESS:${METADATA_SERVICE_PORT}"
520 fi
Davanum Srinivasd5537c12015-04-30 21:10:48 -0400521
Eoghan Glynn1fcc6a12012-10-25 14:57:14 +0000522 if is_service_enabled ceilometer; then
Devananda van der Veen9bc47db2012-12-12 16:52:55 -0800523 iniset $NOVA_CONF DEFAULT instance_usage_audit "True"
524 iniset $NOVA_CONF DEFAULT instance_usage_audit_period "hour"
Julien Danjoua9787d02013-07-02 11:30:40 +0200525 iniset $NOVA_CONF DEFAULT notify_on_state_change "vm_and_task_state"
Eoghan Glynn1fcc6a12012-10-25 14:57:14 +0000526 fi
527
Gregory Haynes14d86e82016-07-29 03:45:37 +0000528 # Set the oslo messaging driver to the typical default. This does not
529 # enable notifications, but it will allow them to function when enabled.
Matt Riedemann45da7772017-03-05 13:07:39 -0500530 iniset $NOVA_CONF oslo_messaging_notifications driver "messagingv2"
Kenneth Giustib6459042017-08-04 18:08:37 -0400531 iniset $NOVA_CONF oslo_messaging_notifications transport_url $(get_notification_url)
Matt Riedemannb57757a2019-06-03 16:08:09 -0400532 iniset $NOVA_CONF notifications notification_format "$NOVA_NOTIFICATION_FORMAT"
Brant Knudson2dd110c2015-03-14 12:39:14 -0500533 iniset_rpc_backend nova $NOVA_CONF
Bob Ball2f720502014-08-28 14:50:04 +0100534
Joe Gordon1f79bad2014-09-26 09:59:47 -0700535 iniset $NOVA_CONF DEFAULT osapi_compute_workers "$API_WORKERS"
Dean Troyer05bd7b82014-09-16 17:25:33 -0500536 iniset $NOVA_CONF DEFAULT metadata_workers "$API_WORKERS"
Sean Dague1ce19ab2015-09-23 10:36:53 -0400537 # don't let the conductor get out of control now that we're using a pure python db driver
538 iniset $NOVA_CONF conductor workers "$API_WORKERS"
Rob Crittenden18d47782014-03-19 17:47:42 -0400539
Sean Daguef3b2f4c2017-04-13 10:11:48 -0400540 if is_service_enabled tls-proxy; then
Rob Crittenden18d47782014-03-19 17:47:42 -0400541 iniset $NOVA_CONF DEFAULT glance_protocol https
Jens Harbott411c34d2017-08-29 14:40:26 +0000542 iniset $NOVA_CONF oslo_middleware enable_proxy_headers_parsing True
Rob Crittenden18d47782014-03-19 17:47:42 -0400543 fi
544
Marian Horban7159b4b2015-10-22 15:47:49 -0400545 iniset $NOVA_CONF DEFAULT graceful_shutdown_timeout "$SERVICE_GRACEFUL_SHUTDOWN_TIMEOUT"
Davanum Srinivasac8ff0f2016-01-13 17:28:43 -0500546
Pushkar Umaranikar14e16e42016-12-09 20:20:42 +0000547 if [ "$NOVA_USE_SERVICE_TOKEN" == "True" ]; then
548 init_nova_service_user_conf
549 fi
Dan Smithf3d53312017-06-08 08:22:38 -0400550
551 if is_service_enabled n-cond; then
552 for i in $(seq 1 $NOVA_NUM_CELLS); do
553 local conf
554 local vhost
555 conf=$(conductor_conf $i)
556 vhost="nova_cell${i}"
jiangyikun1a2c86c2017-09-07 17:56:13 +0800557 # clean old conductor conf
558 rm -f $conf
Dan Smithf3d53312017-06-08 08:22:38 -0400559 iniset $conf database connection `database_connection_url nova_cell${i}`
560 iniset $conf conductor workers "$API_WORKERS"
561 iniset $conf DEFAULT debug "$ENABLE_DEBUG_LOG_LEVEL"
Sean Dagueafc14c82017-07-27 07:09:48 -0400562 # if we have a singleconductor, we don't have per host message queues.
563 if [[ "${CELLSV2_SETUP}" == "singleconductor" ]]; then
564 iniset_rpc_backend nova $conf DEFAULT
565 else
566 rpc_backend_add_vhost $vhost
567 iniset_rpc_backend nova $conf DEFAULT $vhost
Matt Riedemannf6d566c2017-12-22 11:39:29 -0500568 # When running in superconductor mode, the cell conductor
569 # must be configured to talk to the placement service for
570 # reschedules to work.
571 if is_service_enabled placement placement-client; then
572 configure_placement_nova_compute $conf
573 fi
Sean Dagueafc14c82017-07-27 07:09:48 -0400574 fi
Matt Riedemann9d7e74e2017-08-25 10:17:18 -0400575 # Format logging
576 setup_logging $conf
Dan Smithf3d53312017-06-08 08:22:38 -0400577 done
578 fi
melanie witt12579c32018-05-05 23:55:32 +0000579
580 # Console proxy configuration has to go after conductor configuration
581 # because the per cell config file nova_cellN.conf is cleared out as part
582 # of conductor configuration.
583 if [[ "${CELLSV2_SETUP}" == "singleconductor" ]]; then
584 configure_console_proxies
585 else
586 for i in $(seq 1 $NOVA_NUM_CELLS); do
587 local conf
melanie wittd5a68a62019-04-02 22:52:23 +0000588 local offset
melanie witt12579c32018-05-05 23:55:32 +0000589 conf=$(conductor_conf $i)
melanie wittd5a68a62019-04-02 22:52:23 +0000590 offset=$((i - 1))
591 configure_console_proxies $conf $offset
melanie witt12579c32018-05-05 23:55:32 +0000592 done
593 fi
594}
595
Chris Dent16a10d72019-01-14 17:16:01 +0000596# Configure access to placement from a nova service, usually
597# compute, but sometimes conductor.
598function configure_placement_nova_compute {
599 # Use the provided config file path or default to $NOVA_CONF.
600 local conf=${1:-$NOVA_CONF}
601 iniset $conf placement auth_type "password"
602 iniset $conf placement auth_url "$KEYSTONE_SERVICE_URI"
603 iniset $conf placement username placement
604 iniset $conf placement password "$SERVICE_PASSWORD"
605 iniset $conf placement user_domain_name "$SERVICE_DOMAIN_NAME"
606 iniset $conf placement project_name "$SERVICE_TENANT_NAME"
607 iniset $conf placement project_domain_name "$SERVICE_DOMAIN_NAME"
608 iniset $conf placement region_name "$REGION_NAME"
609}
610
Matt Riedemann594885c2019-09-27 16:45:09 -0400611# Configure access to cinder.
612function configure_cinder_access {
613 iniset $NOVA_CONF cinder os_region_name "$REGION_NAME"
614 iniset $NOVA_CONF cinder auth_type "password"
615 iniset $NOVA_CONF cinder auth_url "$KEYSTONE_SERVICE_URI"
616 # NOTE(mriedem): This looks a bit weird but we use the nova user here
617 # since it has the admin role and the cinder user does not. This is
618 # similar to using the nova user in init_nova_service_user_conf. We need
619 # to use a user with the admin role for background tasks in nova to
620 # be able to GET block-storage API resources owned by another project
621 # since cinder has low-level "is_admin" checks in its DB API.
622 iniset $NOVA_CONF cinder username nova
623 iniset $NOVA_CONF cinder password "$SERVICE_PASSWORD"
624 iniset $NOVA_CONF cinder user_domain_name "$SERVICE_DOMAIN_NAME"
625 iniset $NOVA_CONF cinder project_name "$SERVICE_TENANT_NAME"
626 iniset $NOVA_CONF cinder project_domain_name "$SERVICE_DOMAIN_NAME"
627 if is_service_enabled tls-proxy; then
628 CINDER_SERVICE_HOST=${CINDER_SERVICE_HOST:-$SERVICE_HOST}
629 CINDER_SERVICE_PORT=${CINDER_SERVICE_PORT:-8776}
630 iniset $NOVA_CONF cinder cafile $SSL_BUNDLE_FILE
631 fi
632}
633
melanie witt65ad7942018-05-09 17:55:40 +0000634function configure_console_compute {
melanie wittd7d902f2019-05-24 20:09:28 +0000635 # If we are running multiple cells (and thus multiple console proxies) on a
636 # single host, we offset the ports to avoid collisions. We need to
637 # correspondingly configure the console proxy port for nova-compute and we
638 # can use the NOVA_CPU_CELL variable to know which cell we are for
639 # calculating the offset.
640 # Stagger the offset based on the total number of possible console proxies
Stephen Finucane3c6d1052021-03-02 16:35:47 +0000641 # (novnc, spice, serial) so that their ports will not collide if
melanie wittd7d902f2019-05-24 20:09:28 +0000642 # all are enabled.
643 local offset
Stephen Finucane3c6d1052021-03-02 16:35:47 +0000644 offset=$(((NOVA_CPU_CELL - 1) * 3))
melanie wittd7d902f2019-05-24 20:09:28 +0000645
melanie witt0a3288c2019-08-09 15:57:50 +0000646 # Use the host IP instead of the service host because for multi-node, the
647 # service host will be the controller only.
648 local default_proxyclient_addr
649 default_proxyclient_addr=$(iniget $NOVA_CPU_CONF DEFAULT my_ip)
650
melanie witt12579c32018-05-05 23:55:32 +0000651 # All nova-compute workers need to know the vnc configuration options
Stephen Finucane3c6d1052021-03-02 16:35:47 +0000652 # These settings don't hurt anything if n-novnc is disabled
melanie witt12579c32018-05-05 23:55:32 +0000653 if is_service_enabled n-cpu; then
Stephen Finucane8c548692018-05-11 16:12:17 +0530654 if [ "$NOVNC_FROM_PACKAGE" == "True" ]; then
655 # Use the old URL when installing novnc packages.
melanie wittd7d902f2019-05-24 20:09:28 +0000656 NOVNCPROXY_URL=${NOVNCPROXY_URL:-"http://$SERVICE_HOST:$((6080 + offset))/vnc_auto.html"}
Stephen Finucane8c548692018-05-11 16:12:17 +0530657 elif vercmp ${NOVNC_BRANCH} "<" "1.0.0"; then
melanie wittd7d902f2019-05-24 20:09:28 +0000658 # Use the old URL when installing older novnc source.
659 NOVNCPROXY_URL=${NOVNCPROXY_URL:-"http://$SERVICE_HOST:$((6080 + offset))/vnc_auto.html"}
Stephen Finucane8c548692018-05-11 16:12:17 +0530660 else
661 # Use the new URL when building >=v1.0.0 from source.
melanie wittd7d902f2019-05-24 20:09:28 +0000662 NOVNCPROXY_URL=${NOVNCPROXY_URL:-"http://$SERVICE_HOST:$((6080 + offset))/vnc_lite.html"}
Stephen Finucane8c548692018-05-11 16:12:17 +0530663 fi
melanie witt65ad7942018-05-09 17:55:40 +0000664 iniset $NOVA_CPU_CONF vnc novncproxy_base_url "$NOVNCPROXY_URL"
Stephen Finucane3c6d1052021-03-02 16:35:47 +0000665 SPICEHTML5PROXY_URL=${SPICEHTML5PROXY_URL:-"http://$SERVICE_HOST:$((6081 + offset))/spice_auto.html"}
melanie witt65ad7942018-05-09 17:55:40 +0000666 iniset $NOVA_CPU_CONF spice html5proxy_base_url "$SPICEHTML5PROXY_URL"
melanie witt12579c32018-05-05 23:55:32 +0000667 fi
668
Stephen Finucane3c6d1052021-03-02 16:35:47 +0000669 if is_service_enabled n-novnc || [ "$NOVA_VNC_ENABLED" != False ]; then
melanie witt12579c32018-05-05 23:55:32 +0000670 # Address on which instance vncservers will listen on compute hosts.
671 # For multi-host, this should be the management ip of the compute host.
melanie witt0a3288c2019-08-09 15:57:50 +0000672 VNCSERVER_LISTEN=${VNCSERVER_LISTEN:-$NOVA_SERVICE_LISTEN_ADDRESS}
673 VNCSERVER_PROXYCLIENT_ADDRESS=${VNCSERVER_PROXYCLIENT_ADDRESS:-$default_proxyclient_addr}
melanie witt65ad7942018-05-09 17:55:40 +0000674 iniset $NOVA_CPU_CONF vnc server_listen "$VNCSERVER_LISTEN"
675 iniset $NOVA_CPU_CONF vnc server_proxyclient_address "$VNCSERVER_PROXYCLIENT_ADDRESS"
676 else
677 iniset $NOVA_CPU_CONF vnc enabled false
678 fi
679
680 if is_service_enabled n-spice; then
681 # Address on which instance spiceservers will listen on compute hosts.
682 # For multi-host, this should be the management ip of the compute host.
melanie witt0a3288c2019-08-09 15:57:50 +0000683 SPICESERVER_PROXYCLIENT_ADDRESS=${SPICESERVER_PROXYCLIENT_ADDRESS:-$default_proxyclient_addr}
684 SPICESERVER_LISTEN=${SPICESERVER_LISTEN:-$NOVA_SERVICE_LISTEN_ADDRESS}
melanie witt65ad7942018-05-09 17:55:40 +0000685 iniset $NOVA_CPU_CONF spice enabled true
686 iniset $NOVA_CPU_CONF spice server_listen "$SPICESERVER_LISTEN"
687 iniset $NOVA_CPU_CONF spice server_proxyclient_address "$SPICESERVER_PROXYCLIENT_ADDRESS"
688 fi
689
690 if is_service_enabled n-sproxy; then
691 iniset $NOVA_CPU_CONF serial_console enabled True
Stephen Finucane3c6d1052021-03-02 16:35:47 +0000692 iniset $NOVA_CPU_CONF serial_console base_url "ws://$SERVICE_HOST:$((6082 + offset))/"
melanie witt65ad7942018-05-09 17:55:40 +0000693 fi
694}
695
696function configure_console_proxies {
697 # Use the provided config file path or default to $NOVA_CONF.
698 local conf=${1:-$NOVA_CONF}
melanie wittd5a68a62019-04-02 22:52:23 +0000699 local offset=${2:-0}
700 # Stagger the offset based on the total number of possible console proxies
Stephen Finucane3c6d1052021-03-02 16:35:47 +0000701 # (novnc, spice, serial) so that their ports will not collide if
melanie wittd5a68a62019-04-02 22:52:23 +0000702 # all are enabled.
Stephen Finucane3c6d1052021-03-02 16:35:47 +0000703 offset=$((offset * 3))
melanie witt65ad7942018-05-09 17:55:40 +0000704
Stephen Finucane3c6d1052021-03-02 16:35:47 +0000705 if is_service_enabled n-novnc || [ "$NOVA_VNC_ENABLED" != False ]; then
melanie witt12579c32018-05-05 23:55:32 +0000706 iniset $conf vnc novncproxy_host "$NOVA_SERVICE_LISTEN_ADDRESS"
melanie wittd5a68a62019-04-02 22:52:23 +0000707 iniset $conf vnc novncproxy_port $((6080 + offset))
melanie witt12579c32018-05-05 23:55:32 +0000708
709 if is_nova_console_proxy_compute_tls_enabled ; then
710 iniset $conf vnc auth_schemes "vencrypt"
711 iniset $conf vnc vencrypt_client_key "/etc/pki/nova-novnc/client-key.pem"
712 iniset $conf vnc vencrypt_client_cert "/etc/pki/nova-novnc/client-cert.pem"
713 iniset $conf vnc vencrypt_ca_certs "/etc/pki/nova-novnc/ca-cert.pem"
714
715 sudo mkdir -p /etc/pki/nova-novnc
716 deploy_int_CA /etc/pki/nova-novnc/ca-cert.pem
717 deploy_int_cert /etc/pki/nova-novnc/client-cert.pem /etc/pki/nova-novnc/client-key.pem
melanie witte2853bf2019-03-13 13:16:51 +0000718 # OpenSSL 1.1.0 generates the key file with permissions: 600, by
719 # default, and the deploy_int* methods use 'sudo cp' to copy the
720 # files, making them owned by root:root.
721 # Change ownership of everything under /etc/pki/nova-novnc to
722 # $STACK_USER:$(id -g ${STACK_USER}) so that $STACK_USER can read
723 # the key file.
724 sudo chown -R $STACK_USER:$(id -g ${STACK_USER}) /etc/pki/nova-novnc
725 # This is needed to enable TLS in the proxy itself, example log:
726 # WebSocket server settings:
727 # - Listen on 0.0.0.0:6080
728 # - Flash security policy server
729 # - Web server (no directory listings). Web root: /usr/share/novnc
730 # - SSL/TLS support
731 # - proxying from 0.0.0.0:6080 to None:None
732 iniset $conf DEFAULT key "/etc/pki/nova-novnc/client-key.pem"
733 iniset $conf DEFAULT cert "/etc/pki/nova-novnc/client-cert.pem"
melanie witt12579c32018-05-05 23:55:32 +0000734 fi
melanie witt12579c32018-05-05 23:55:32 +0000735 fi
736
737 if is_service_enabled n-spice; then
melanie witt12579c32018-05-05 23:55:32 +0000738 iniset $conf spice html5proxy_host "$NOVA_SERVICE_LISTEN_ADDRESS"
Stephen Finucane3c6d1052021-03-02 16:35:47 +0000739 iniset $conf spice html5proxy_port $((6081 + offset))
melanie witt12579c32018-05-05 23:55:32 +0000740 fi
741
742 if is_service_enabled n-sproxy; then
743 iniset $conf serial_console serialproxy_host "$NOVA_SERVICE_LISTEN_ADDRESS"
Stephen Finucane3c6d1052021-03-02 16:35:47 +0000744 iniset $conf serial_console serialproxy_port $((6082 + offset))
melanie witt12579c32018-05-05 23:55:32 +0000745 fi
Pushkar Umaranikar14e16e42016-12-09 20:20:42 +0000746}
747
melanie witt099a0482021-05-06 00:09:33 +0000748function configure_nova_unified_limits {
749 # Default limits. Mirror the config-based default values.
750 # Note: disk quota is new in nova as of unified limits.
751 bash -c "unset OS_USERNAME OS_TENANT_NAME OS_PROJECT_NAME;
752 openstack --os-cloud devstack-system-admin registered limit create \
753 --service nova --default-limit 10 --region $REGION_NAME \
754 servers; \
755 openstack --os-cloud devstack-system-admin registered limit create \
756 --service nova --default-limit 20 --region $REGION_NAME \
757 class:VCPU; \
758 openstack --os-cloud devstack-system-admin registered limit create \
759 --service nova --default-limit $((50 * 1024)) --region $REGION_NAME \
760 class:MEMORY_MB; \
761 openstack --os-cloud devstack-system-admin registered limit create \
762 --service nova --default-limit 20 --region $REGION_NAME \
763 class:DISK_GB; \
764 openstack --os-cloud devstack-system-admin registered limit create \
765 --service nova --default-limit 128 --region $REGION_NAME \
766 server_metadata_items; \
767 openstack --os-cloud devstack-system-admin registered limit create \
768 --service nova --default-limit 5 --region $REGION_NAME \
769 server_injected_files; \
770 openstack --os-cloud devstack-system-admin registered limit create \
771 --service nova --default-limit 10240 --region $REGION_NAME \
772 server_injected_file_content_bytes; \
773 openstack --os-cloud devstack-system-admin registered limit create \
774 --service nova --default-limit 255 --region $REGION_NAME \
775 server_injected_file_path_bytes; \
776 openstack --os-cloud devstack-system-admin registered limit create \
777 --service nova --default-limit 100 --region $REGION_NAME \
778 server_key_pairs; \
779 openstack --os-cloud devstack-system-admin registered limit create \
780 --service nova --default-limit 10 --region $REGION_NAME \
781 server_groups; \
782 openstack --os-cloud devstack-system-admin registered limit create \
783 --service nova --default-limit 10 --region $REGION_NAME \
784 server_group_members"
785
786 # Tell nova to use these limits
787 iniset $NOVA_CONF quota driver "nova.quota.UnifiedLimitsDriver"
788
789 # Configure oslo_limit so it can talk to keystone
790 iniset $NOVA_CONF oslo_limit user_domain_name $SERVICE_DOMAIN_NAME
791 iniset $NOVA_CONF oslo_limit password $SERVICE_PASSWORD
792 iniset $NOVA_CONF oslo_limit username nova
793 iniset $NOVA_CONF oslo_limit auth_type password
794 iniset $NOVA_CONF oslo_limit auth_url $KEYSTONE_SERVICE_URI
795 iniset $NOVA_CONF oslo_limit system_scope "'all'"
796 iniset $NOVA_CONF oslo_limit endpoint_id \
797 $(openstack endpoint list --service nova -f value -c ID)
798
799 # Allow the nova service user to read quotas
800 openstack role add --user nova --user-domain Default --system all \
801 reader
802}
803
Pushkar Umaranikar14e16e42016-12-09 20:20:42 +0000804function init_nova_service_user_conf {
805 iniset $NOVA_CONF service_user send_service_user_token True
806 iniset $NOVA_CONF service_user auth_type password
Brant Knudsonc2c89e42017-02-23 20:15:47 -0600807 iniset $NOVA_CONF service_user auth_url "$KEYSTONE_SERVICE_URI"
Pushkar Umaranikar14e16e42016-12-09 20:20:42 +0000808 iniset $NOVA_CONF service_user username nova
809 iniset $NOVA_CONF service_user password "$SERVICE_PASSWORD"
810 iniset $NOVA_CONF service_user user_domain_name "$SERVICE_DOMAIN_NAME"
811 iniset $NOVA_CONF service_user project_name "$SERVICE_PROJECT_NAME"
812 iniset $NOVA_CONF service_user project_domain_name "$SERVICE_DOMAIN_NAME"
813 iniset $NOVA_CONF service_user auth_strategy keystone
Dean Troyerda7b8092012-10-08 18:12:14 -0500814}
Dean Troyerbf67c192012-09-21 15:09:37 -0500815
Dan Smithf3d53312017-06-08 08:22:38 -0400816function conductor_conf {
817 local cell="$1"
818 echo "${NOVA_CONF_DIR}/nova_cell${cell}.conf"
819}
820
Dean Troyerf03bafe2013-02-12 10:58:28 -0600821# create_nova_keys_dir() - Part of the init_nova() process
Ian Wienandaee18c72014-02-21 15:35:08 +1100822function create_nova_keys_dir {
Dean Troyerf03bafe2013-02-12 10:58:28 -0600823 # Create keys dir
Dean Troyer8421c2b2015-03-16 13:52:19 -0500824 sudo install -d -o $STACK_USER ${NOVA_STATE_PATH} ${NOVA_STATE_PATH}/keys
Dean Troyerf03bafe2013-02-12 10:58:28 -0600825}
826
Dan Smith30d9bf92021-01-19 12:10:52 -0800827function init_nova_db {
828 local dbname="$1"
829 local conffile="$2"
830 recreate_database $dbname
831 $NOVA_BIN_DIR/nova-manage --config-file $conffile db sync --local_cell
832}
833
Dean Troyerda7b8092012-10-08 18:12:14 -0500834# init_nova() - Initialize databases, etc.
Ian Wienandaee18c72014-02-21 15:35:08 +1100835function init_nova {
Dean Troyerf03bafe2013-02-12 10:58:28 -0600836 # All nova components talk to a central database.
837 # Only do this step once on the API node for an entire cluster.
Bob Melanderc439b5d2012-12-19 14:49:34 +0100838 if is_service_enabled $DATABASE_BACKENDS && is_service_enabled n-api; then
Dan Smith30d9bf92021-01-19 12:10:52 -0800839 # (Re)create nova databases
Dan Smith48b76332021-02-16 14:14:23 -0800840 if [[ "$CELLSV2_SETUP" == "singleconductor" ]]; then
841 # If we are doing singleconductor mode, we have some strange
842 # interdependencies. in that the main config refers to cell1
843 # instead of cell0. In that case, just make sure the cell0 database
844 # is created before we need it below, but don't db_sync it until
845 # after the cellN databases are there.
846 recreate_database nova_cell0
847 else
848 async_run nova-cell-0 init_nova_db nova_cell0 $NOVA_CONF
849 fi
850
Dan Smith30d9bf92021-01-19 12:10:52 -0800851 for i in $(seq 1 $NOVA_NUM_CELLS); do
852 async_run nova-cell-$i init_nova_db nova_cell${i} $(conductor_conf $i)
853 done
854
Roman Podoliakaf575aef2016-10-11 13:15:55 +0300855 recreate_database $NOVA_API_DB
856 $NOVA_BIN_DIR/nova-manage --config-file $NOVA_CONF api_db sync
857
Matt Riedemannac5fdb42017-01-31 15:20:18 -0500858 # map_cell0 will create the cell mapping record in the nova_api DB so
Dan Smith30d9bf92021-01-19 12:10:52 -0800859 # this needs to come after the api_db sync happens.
Paul Belangera62ede72018-03-14 11:58:56 -0400860 $NOVA_BIN_DIR/nova-manage cell_v2 map_cell0 --database_connection `database_connection_url nova_cell0`
Matt Riedemannac5fdb42017-01-31 15:20:18 -0500861
Dan Smith30d9bf92021-01-19 12:10:52 -0800862 # Wait for DBs to finish from above
863 for i in $(seq 0 $NOVA_NUM_CELLS); do
864 async_wait nova-cell-$i
Dan Smithf3d53312017-06-08 08:22:38 -0400865 done
866
Dan Smith48b76332021-02-16 14:14:23 -0800867 if [[ "$CELLSV2_SETUP" == "singleconductor" ]]; then
868 # We didn't db sync cell0 above, so run it now
869 $NOVA_BIN_DIR/nova-manage --config-file $NOVA_CONF db sync
870 fi
871
Dan Smithbb49d352016-03-28 11:03:35 -0700872 # Run online migrations on the new databases
873 # Needed for flavor conversion
Einst Crazy4f55c2d2016-05-04 08:14:01 +0000874 $NOVA_BIN_DIR/nova-manage --config-file $NOVA_CONF db online_data_migrations
Matt Riedemannf15224c2017-03-02 12:45:47 -0500875
876 # create the cell1 cell for the main nova db where the hosts live
Dan Smithf3d53312017-06-08 08:22:38 -0400877 for i in $(seq 1 $NOVA_NUM_CELLS); do
Paul Belangera62ede72018-03-14 11:58:56 -0400878 $NOVA_BIN_DIR/nova-manage --config-file $NOVA_CONF --config-file $(conductor_conf $i) cell_v2 create_cell --name "cell$i"
Dan Smithf3d53312017-06-08 08:22:38 -0400879 done
Dean Troyerbf67c192012-09-21 15:09:37 -0500880 fi
881
Dean Troyerf03bafe2013-02-12 10:58:28 -0600882 create_nova_keys_dir
Maru Newbyc070a3d2015-01-27 17:44:44 +0000883
884 if [[ "$NOVA_BACKEND" == "LVM" ]]; then
885 init_default_lvm_volume_group
886 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500887}
888
889# install_novaclient() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100890function install_novaclient {
Sean Daguee08ab102014-11-13 17:09:28 -0500891 if use_library_from_git "python-novaclient"; then
892 git_clone_by_name "python-novaclient"
893 setup_dev_lib "python-novaclient"
894 sudo install -D -m 0644 -o $STACK_USER {${GITDIR["python-novaclient"]}/tools/,/etc/bash_completion.d/}nova.bash_completion
Sean Dague5cb19062014-11-01 01:37:45 +0100895 fi
Dean Troyerbf67c192012-09-21 15:09:37 -0500896}
897
898# install_nova() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100899function install_nova {
Sergey Belous1258da62016-03-21 12:32:06 +0300900
901 # Install os-vif
902 if use_library_from_git "os-vif"; then
903 git_clone_by_name "os-vif"
904 setup_dev_lib "os-vif"
905 fi
906
Dean Troyer8c032d12013-09-23 13:53:13 -0500907 if is_service_enabled n-cpu && [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
908 install_nova_hypervisor
Dean Troyerbf67c192012-09-21 15:09:37 -0500909 fi
910
Attila Fazekas5a35e732013-10-29 08:23:43 +0100911 if is_service_enabled n-novnc; then
912 # a websockets/html5 or flash powered VNC console for vm instances
Sean Dague53753292014-12-04 19:38:15 -0500913 NOVNC_FROM_PACKAGE=$(trueorfalse False NOVNC_FROM_PACKAGE)
Ben Nemecadd4ca32013-11-08 17:22:51 +0000914 if [ "$NOVNC_FROM_PACKAGE" = "True" ]; then
Attila Fazekas5a35e732013-10-29 08:23:43 +0100915 NOVNC_WEB_DIR=/usr/share/novnc
916 install_package novnc
917 else
Lee Yarwood31334f92021-11-04 18:30:29 +0000918 NOVNC_WEB_DIR=$DEST/novnc
Attila Fazekas5a35e732013-10-29 08:23:43 +0100919 git_clone $NOVNC_REPO $NOVNC_WEB_DIR $NOVNC_BRANCH
920 fi
921 fi
922
923 if is_service_enabled n-spice; then
924 # a websockets/html5 or flash powered SPICE console for vm instances
Sean Dague53753292014-12-04 19:38:15 -0500925 SPICE_FROM_PACKAGE=$(trueorfalse True SPICE_FROM_PACKAGE)
Ben Nemecadd4ca32013-11-08 17:22:51 +0000926 if [ "$SPICE_FROM_PACKAGE" = "True" ]; then
Attila Fazekas5a35e732013-10-29 08:23:43 +0100927 SPICE_WEB_DIR=/usr/share/spice-html5
928 install_package spice-html5
929 else
930 SPICE_WEB_DIR=$DEST/spice-html5
931 git_clone $SPICE_REPO $SPICE_WEB_DIR $SPICE_BRANCH
932 fi
933 fi
934
Dean Troyerbf67c192012-09-21 15:09:37 -0500935 git_clone $NOVA_REPO $NOVA_DIR $NOVA_BRANCH
Dean Troyer253a1a32013-04-01 18:23:22 -0500936 setup_develop $NOVA_DIR
Attila Fazekasfac533e2013-08-14 16:04:01 +0200937 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 -0500938}
939
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600940# start_nova_api() - Start the API process ahead of other things
Ian Wienandaee18c72014-02-21 15:35:08 +1100941function start_nova_api {
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600942 # Get right service port for testing
943 local service_port=$NOVA_SERVICE_PORT
Rob Crittenden18d47782014-03-19 17:47:42 -0400944 local service_protocol=$NOVA_SERVICE_PROTOCOL
Chris Dentb90bb1a2017-04-18 16:30:14 +0000945 local nova_url
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600946 if is_service_enabled tls-proxy; then
947 service_port=$NOVA_SERVICE_PORT_INT
Rob Crittenden18d47782014-03-19 17:47:42 -0400948 service_protocol="http"
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600949 fi
950
Dean Troyer4533eee2015-02-17 16:25:38 -0600951 # Hack to set the path for rootwrap
952 local old_path=$PATH
953 export PATH=$NOVA_BIN_DIR:$PATH
954
Chris Dentb90bb1a2017-04-18 16:30:14 +0000955 if [ "$NOVA_USE_MOD_WSGI" == "False" ]; then
Davanum Srinivasd5537c12015-04-30 21:10:48 -0400956 run_process n-api "$NOVA_BIN_DIR/nova-api"
Chris Dentb90bb1a2017-04-18 16:30:14 +0000957 nova_url=$service_protocol://$SERVICE_HOST:$service_port
958 # Start proxy if tsl enabled
959 if is_service_enabled tls-proxy; then
960 start_tls_proxy nova '*' $NOVA_SERVICE_PORT $NOVA_SERVICE_HOST $NOVA_SERVICE_PORT_INT
961 fi
962 else
Ian Wienand312517d2018-06-22 22:23:29 +1000963 run_process "n-api" "$(which uwsgi) --procname-prefix nova-api --ini $NOVA_UWSGI_CONF"
Chris Dentb90bb1a2017-04-18 16:30:14 +0000964 nova_url=$service_protocol://$SERVICE_HOST/compute/v2.1/
Davanum Srinivasd5537c12015-04-30 21:10:48 -0400965 fi
966
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600967 echo "Waiting for nova-api to start..."
Chris Dentb90bb1a2017-04-18 16:30:14 +0000968 if ! wait_for_service $SERVICE_TIMEOUT $nova_url; then
Sean Dague101b4242013-10-22 08:47:11 -0400969 die $LINENO "nova-api did not start"
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600970 fi
971
Dean Troyer4533eee2015-02-17 16:25:38 -0600972 export PATH=$old_path
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600973}
974
Sean Dagueafc14c82017-07-27 07:09:48 -0400975
Dan Smith2e159462013-10-21 13:06:11 -0700976# start_nova_compute() - Start the compute process
Ian Wienandaee18c72014-02-21 15:35:08 +1100977function start_nova_compute {
Dean Troyer4533eee2015-02-17 16:25:38 -0600978 # Hack to set the path for rootwrap
979 local old_path=$PATH
980 export PATH=$NOVA_BIN_DIR:$PATH
981
Stephen Finucane4b8cba72019-05-21 14:17:11 +0100982 local compute_cell_conf=$NOVA_CONF
Kieran Spearfb2a3ae2013-03-11 23:55:49 +0000983
Eric Fried2468cea2019-07-25 13:18:58 -0500984 # Bug #1802143: $NOVA_CPU_CONF is constructed by first copying $NOVA_CONF...
Matt Riedemann82537872019-01-18 10:42:13 -0500985 cp $compute_cell_conf $NOVA_CPU_CONF
Eric Fried2468cea2019-07-25 13:18:58 -0500986 # ...and then adding/overriding anything explicitly set in $NOVA_CPU_CONF
987 merge_config_file $TOP_DIR/local.conf post-config '$NOVA_CPU_CONF'
Matt Riedemann82537872019-01-18 10:42:13 -0500988
Sean Dague5adfef02017-07-26 11:14:37 -0400989 if [[ "${CELLSV2_SETUP}" == "singleconductor" ]]; then
Dan Smithf3d53312017-06-08 08:22:38 -0400990 # NOTE(danms): Grenade doesn't setup multi-cell rabbit, so
991 # skip these bits and use the normal config.
Dan Smithf3d53312017-06-08 08:22:38 -0400992 echo "Skipping multi-cell conductor fleet setup"
993 else
Sean Dague5adfef02017-07-26 11:14:37 -0400994 # "${CELLSV2_SETUP}" is "superconductor"
Dan Smithf3d53312017-06-08 08:22:38 -0400995 # FIXME(danms): Should this be configurable?
996 iniset $NOVA_CPU_CONF workarounds disable_group_policy_check_upcall True
Matt Riedemannab980ce2017-08-01 16:38:42 -0400997 # Since the nova-compute service cannot reach nova-scheduler over
998 # RPC, we also disable track_instance_changes.
999 iniset $NOVA_CPU_CONF filter_scheduler track_instance_changes False
Dan Smithf3d53312017-06-08 08:22:38 -04001000 iniset_rpc_backend nova $NOVA_CPU_CONF DEFAULT "nova_cell${NOVA_CPU_CELL}"
1001 fi
1002
Matt Riedemann82537872019-01-18 10:42:13 -05001003 # Make sure we nuke any database config
1004 inidelete $NOVA_CPU_CONF database connection
1005 inidelete $NOVA_CPU_CONF api_database connection
1006
melanie witt65ad7942018-05-09 17:55:40 +00001007 # Console proxies were configured earlier in create_nova_conf. Now that the
1008 # nova-cpu.conf has been created, configure the console settings required
1009 # by the compute process.
1010 configure_console_compute
1011
Lucas Alvares Gomes6ecfe672020-09-23 11:54:19 +01001012 # Configure the OVSDB connection for os-vif
1013 if [ -n "$OVSDB_SERVER_LOCAL_HOST" ]; then
1014 iniset $NOVA_CPU_CONF os_vif_ovs ovsdb_connection "tcp:$OVSDB_SERVER_LOCAL_HOST:6640"
1015 fi
1016
Lee Yarwood1e86a252021-08-19 14:24:28 +01001017 # Workaround bug #1939108
1018 if [[ "$VIRT_DRIVER" == "libvirt" && "$LIBVIRT_TYPE" == "qemu" ]]; then
1019 iniset $NOVA_CPU_CONF workarounds libvirt_disable_apic True
1020 fi
1021
Bob Ballb1e49bf2013-05-30 16:47:19 +01001022 if [[ "$VIRT_DRIVER" = 'libvirt' ]]; then
1023 # The group **$LIBVIRT_GROUP** is added to the current user in this script.
Dean Troyer3324f192014-09-18 09:26:39 -05001024 # ``sg`` is used in run_process to execute nova-compute as a member of the
Chris Dent2f27a0e2014-09-09 13:46:02 +01001025 # **$LIBVIRT_GROUP** group.
Dan Smithf3d53312017-06-08 08:22:38 -04001026 run_process n-cpu "$NOVA_BIN_DIR/nova-compute --config-file $NOVA_CPU_CONF" $LIBVIRT_GROUP
Lubosz "diltram" Kosnik0ffdfbd2016-08-02 16:35:22 -05001027 elif [[ "$VIRT_DRIVER" = 'lxd' ]]; then
Dan Smithf3d53312017-06-08 08:22:38 -04001028 run_process n-cpu "$NOVA_BIN_DIR/nova-compute --config-file $NOVA_CPU_CONF" $LXD_GROUP
Hongbin Lu53a49d12016-12-23 16:16:50 -06001029 elif [[ "$VIRT_DRIVER" = 'docker' || "$VIRT_DRIVER" = 'zun' ]]; then
Dan Smithf3d53312017-06-08 08:22:38 -04001030 run_process n-cpu "$NOVA_BIN_DIR/nova-compute --config-file $NOVA_CPU_CONF" $DOCKER_GROUP
Joe Gordon2c94ee52013-08-02 02:02:01 +00001031 elif [[ "$VIRT_DRIVER" = 'fake' ]]; then
Dean Troyer0038a1a2014-07-25 15:27:54 -05001032 local i
Sean Dague101b4242013-10-22 08:47:11 -04001033 for i in `seq 1 $NUMBER_FAKE_NOVA_COMPUTE`; do
Chris Dent2f27a0e2014-09-09 13:46:02 +01001034 # Avoid process redirection of fake host configurations by
1035 # creating or modifying real configurations. Each fake
1036 # gets its own configuration and own log file.
1037 local fake_conf="${NOVA_FAKE_CONF}-${i}"
Chris Dentac475bb2018-02-07 18:35:40 +00001038 iniset $fake_conf DEFAULT host "${HOSTNAME}${i}"
Dan Smithf3d53312017-06-08 08:22:38 -04001039 run_process "n-cpu-${i}" "$NOVA_BIN_DIR/nova-compute --config-file $NOVA_CPU_CONF --config-file $fake_conf"
Sean Dague101b4242013-10-22 08:47:11 -04001040 done
Bob Ballb1e49bf2013-05-30 16:47:19 +01001041 else
Dean Troyer2aa2a892013-08-04 19:53:19 -05001042 if is_service_enabled n-cpu && [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
1043 start_nova_hypervisor
1044 fi
Dan Smithf3d53312017-06-08 08:22:38 -04001045 run_process n-cpu "$NOVA_BIN_DIR/nova-compute --config-file $NOVA_CPU_CONF"
Bob Ballb1e49bf2013-05-30 16:47:19 +01001046 fi
Dean Troyer4533eee2015-02-17 16:25:38 -06001047
1048 export PATH=$old_path
Dan Smith2e159462013-10-21 13:06:11 -07001049}
1050
Sean Dague0eebeb42017-08-30 14:16:58 -04001051# start_nova() - Start running processes
Ian Wienandaee18c72014-02-21 15:35:08 +11001052function start_nova_rest {
Dean Troyer4533eee2015-02-17 16:25:38 -06001053 # Hack to set the path for rootwrap
1054 local old_path=$PATH
1055 export PATH=$NOVA_BIN_DIR:$PATH
1056
Chris Behrens86199fc2013-10-23 02:54:53 -07001057 local api_cell_conf=$NOVA_CONF
Stephen Finucane4b8cba72019-05-21 14:17:11 +01001058 local compute_cell_conf=$NOVA_CONF
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +00001059
Chris Dent2f27a0e2014-09-09 13:46:02 +01001060 run_process n-sch "$NOVA_BIN_DIR/nova-scheduler --config-file $compute_cell_conf"
Chris Dentb90bb1a2017-04-18 16:30:14 +00001061 if [ "$NOVA_USE_MOD_WSGI" == "False" ]; then
1062 run_process n-api-meta "$NOVA_BIN_DIR/nova-api-metadata --config-file $compute_cell_conf"
1063 else
Ian Wienand312517d2018-06-22 22:23:29 +10001064 run_process n-api-meta "$(which uwsgi) --procname-prefix nova-api-meta --ini $NOVA_METADATA_UWSGI_CONF"
Chris Dentb90bb1a2017-04-18 16:30:14 +00001065 fi
Chris Behrens86199fc2013-10-23 02:54:53 -07001066
melanie witted2d4912017-07-18 22:29:41 +00001067 export PATH=$old_path
1068}
1069
1070function enable_nova_console_proxies {
1071 for i in $(seq 1 $NOVA_NUM_CELLS); do
Stephen Finucane3c6d1052021-03-02 16:35:47 +00001072 for srv in n-novnc n-spice n-sproxy; do
melanie witted2d4912017-07-18 22:29:41 +00001073 if is_service_enabled $srv; then
1074 enable_service ${srv}-cell${i}
1075 fi
1076 done
1077 done
1078}
1079
1080function start_nova_console_proxies {
1081 # Hack to set the path for rootwrap
1082 local old_path=$PATH
1083 # This is needed to find the nova conf
1084 export PATH=$NOVA_BIN_DIR:$PATH
1085
1086 local api_cell_conf=$NOVA_CONF
1087 # console proxies run globally for singleconductor, else they run per cell
1088 if [[ "${CELLSV2_SETUP}" == "singleconductor" ]]; then
1089 run_process n-novnc "$NOVA_BIN_DIR/nova-novncproxy --config-file $api_cell_conf --web $NOVNC_WEB_DIR"
melanie witted2d4912017-07-18 22:29:41 +00001090 run_process n-spice "$NOVA_BIN_DIR/nova-spicehtml5proxy --config-file $api_cell_conf --web $SPICE_WEB_DIR"
1091 run_process n-sproxy "$NOVA_BIN_DIR/nova-serialproxy --config-file $api_cell_conf"
1092 else
1093 enable_nova_console_proxies
1094 for i in $(seq 1 $NOVA_NUM_CELLS); do
1095 local conf
1096 conf=$(conductor_conf $i)
1097 run_process n-novnc-cell${i} "$NOVA_BIN_DIR/nova-novncproxy --config-file $conf --web $NOVNC_WEB_DIR"
melanie witted2d4912017-07-18 22:29:41 +00001098 run_process n-spice-cell${i} "$NOVA_BIN_DIR/nova-spicehtml5proxy --config-file $conf --web $SPICE_WEB_DIR"
1099 run_process n-sproxy-cell${i} "$NOVA_BIN_DIR/nova-serialproxy --config-file $conf"
1100 done
1101 fi
Dean Troyer1c6c1122013-03-27 17:40:53 -05001102
Dean Troyer4533eee2015-02-17 16:25:38 -06001103 export PATH=$old_path
Dean Troyerbf67c192012-09-21 15:09:37 -05001104}
1105
Dan Smithf3d53312017-06-08 08:22:38 -04001106function enable_nova_fleet {
1107 if is_service_enabled n-cond; then
1108 enable_service n-super-cond
1109 for i in $(seq 1 $NOVA_NUM_CELLS); do
1110 enable_service n-cond-cell${i}
1111 done
1112 fi
1113}
1114
1115function start_nova_conductor {
Sean Dagueafc14c82017-07-27 07:09:48 -04001116 if [[ "${CELLSV2_SETUP}" == "singleconductor" ]]; then
Dan Smithf3d53312017-06-08 08:22:38 -04001117 echo "Starting nova-conductor in a cellsv1-compatible way"
Sean Dagueafc14c82017-07-27 07:09:48 -04001118 run_process n-cond "$NOVA_BIN_DIR/nova-conductor --config-file $NOVA_COND_CONF"
Dan Smithf3d53312017-06-08 08:22:38 -04001119 return
1120 fi
1121
1122 enable_nova_fleet
1123 if is_service_enabled n-super-cond; then
Sean Dagueafc14c82017-07-27 07:09:48 -04001124 run_process n-super-cond "$NOVA_BIN_DIR/nova-conductor --config-file $NOVA_COND_CONF"
Dan Smithf3d53312017-06-08 08:22:38 -04001125 fi
1126 for i in $(seq 1 $NOVA_NUM_CELLS); do
1127 if is_service_enabled n-cond-cell${i}; then
1128 local conf
1129 conf=$(conductor_conf $i)
1130 run_process n-cond-cell${i} "$NOVA_BIN_DIR/nova-conductor --config-file $conf"
1131 fi
1132 done
1133}
1134
Sean Daguec2fe9162017-07-28 11:29:18 +00001135function is_nova_ready {
1136 # NOTE(sdague): with cells v2 all the compute services must be up
1137 # and checked into the database before discover_hosts is run. This
1138 # happens in all in one installs by accident, because > 30 seconds
1139 # happen between here and the script ending. However, in multinode
1140 # tests this can very often not be the case. So ensure that the
1141 # compute is up before we move on.
Jens Harbott730ce452018-02-23 13:56:48 +00001142 wait_for_compute $NOVA_READY_TIMEOUT
Sean Daguec2fe9162017-07-28 11:29:18 +00001143}
1144
Ian Wienandaee18c72014-02-21 15:35:08 +11001145function start_nova {
Dan Smith2e159462013-10-21 13:06:11 -07001146 start_nova_rest
melanie witted2d4912017-07-18 22:29:41 +00001147 start_nova_console_proxies
Dan Smithf3d53312017-06-08 08:22:38 -04001148 start_nova_conductor
Li Ma26ac3d72014-12-21 23:41:07 -08001149 start_nova_compute
Sean Dagueafc14c82017-07-27 07:09:48 -04001150 if is_service_enabled n-api; then
1151 # dump the cell mapping to ensure life is good
1152 echo "Dumping cells_v2 mapping"
Paul Belangera62ede72018-03-14 11:58:56 -04001153 $NOVA_BIN_DIR/nova-manage cell_v2 list_cells --verbose
Sean Dagueafc14c82017-07-27 07:09:48 -04001154 fi
Dan Smith2e159462013-10-21 13:06:11 -07001155}
1156
Joe Gordon767b5a42014-03-12 10:33:15 -07001157function stop_nova_compute {
Adam Gandelmand29ca352014-10-06 14:33:59 -07001158 if [ "$VIRT_DRIVER" == "fake" ]; then
1159 local i
1160 for i in `seq 1 $NUMBER_FAKE_NOVA_COMPUTE`; do
1161 stop_process n-cpu-${i}
1162 done
1163 else
1164 stop_process n-cpu
1165 fi
Joe Gordon767b5a42014-03-12 10:33:15 -07001166 if is_service_enabled n-cpu && [[ -r $NOVA_PLUGINS/hypervisor-$VIRT_DRIVER ]]; then
1167 stop_nova_hypervisor
1168 fi
1169}
1170
1171function stop_nova_rest {
Chris Dentb90bb1a2017-04-18 16:30:14 +00001172 # Kill the non-compute nova processes
Stephen Finucane4b8cba72019-05-21 14:17:11 +01001173 for serv in n-api n-api-meta n-sch; do
Chris Dent2f27a0e2014-09-09 13:46:02 +01001174 stop_process $serv
Dean Troyerbf67c192012-09-21 15:09:37 -05001175 done
Joe Gordon767b5a42014-03-12 10:33:15 -07001176}
1177
melanie witted2d4912017-07-18 22:29:41 +00001178function stop_nova_console_proxies {
1179 if [[ "${CELLSV2_SETUP}" == "singleconductor" ]]; then
Stephen Finucane3c6d1052021-03-02 16:35:47 +00001180 for srv in n-novnc n-spice n-sproxy; do
melanie witted2d4912017-07-18 22:29:41 +00001181 stop_process $srv
1182 done
1183 else
1184 enable_nova_console_proxies
1185 for i in $(seq 1 $NOVA_NUM_CELLS); do
Stephen Finucane3c6d1052021-03-02 16:35:47 +00001186 for srv in n-novnc n-spice n-sproxy; do
melanie witted2d4912017-07-18 22:29:41 +00001187 stop_process ${srv}-cell${i}
1188 done
1189 done
1190 fi
1191}
1192
Dan Smithf3d53312017-06-08 08:22:38 -04001193function stop_nova_conductor {
Davanum Srinivas98c95f42017-08-16 09:10:04 -04001194 if [[ "${CELLSV2_SETUP}" == "singleconductor" ]]; then
1195 stop_process n-cond
1196 return
1197 fi
1198
Dan Smithf3d53312017-06-08 08:22:38 -04001199 enable_nova_fleet
1200 for srv in n-super-cond $(seq -f n-cond-cell%0.f 1 $NOVA_NUM_CELLS); do
1201 if is_service_enabled $srv; then
1202 stop_process $srv
1203 fi
1204 done
1205}
1206
Sean Dague0eebeb42017-08-30 14:16:58 -04001207# stop_nova() - Stop running processes
Joe Gordon767b5a42014-03-12 10:33:15 -07001208function stop_nova {
1209 stop_nova_rest
melanie witted2d4912017-07-18 22:29:41 +00001210 stop_nova_console_proxies
Dan Smithf3d53312017-06-08 08:22:38 -04001211 stop_nova_conductor
Joe Gordon767b5a42014-03-12 10:33:15 -07001212 stop_nova_compute
Dean Troyerbf67c192012-09-21 15:09:37 -05001213}
1214
Dan Smith4b205db2016-04-04 10:37:11 -07001215# create_instance_types(): Create default flavors
1216function create_flavors {
Dan Smithd3d21392016-04-06 14:06:00 -07001217 if is_service_enabled n-api; then
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +03001218 if ! openstack --os-region-name="$REGION_NAME" flavor list | grep -q ds512M; then
Dan Smithd3d21392016-04-06 14:06:00 -07001219 # Note that danms hates these flavors and apologizes for sdague
Clark Boylan7ddbece2019-12-03 14:35:03 -08001220 openstack --os-region-name="$REGION_NAME" flavor create --id c1 --ram 256 --disk 1 --vcpus 1 --property hw_rng:allowed=True cirros256
1221 openstack --os-region-name="$REGION_NAME" flavor create --id d1 --ram 512 --disk 5 --vcpus 1 --property hw_rng:allowed=True ds512M
1222 openstack --os-region-name="$REGION_NAME" flavor create --id d2 --ram 1024 --disk 10 --vcpus 1 --property hw_rng:allowed=True ds1G
1223 openstack --os-region-name="$REGION_NAME" flavor create --id d3 --ram 2048 --disk 10 --vcpus 2 --property hw_rng:allowed=True ds2G
1224 openstack --os-region-name="$REGION_NAME" flavor create --id d4 --ram 4096 --disk 20 --vcpus 4 --property hw_rng:allowed=True ds4G
Dan Smithd3d21392016-04-06 14:06:00 -07001225 fi
Dan Smith4b205db2016-04-04 10:37:11 -07001226
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +03001227 if ! openstack --os-region-name="$REGION_NAME" flavor list | grep -q m1.tiny; then
Clark Boylan7ddbece2019-12-03 14:35:03 -08001228 openstack --os-region-name="$REGION_NAME" flavor create --id 1 --ram 512 --disk 1 --vcpus 1 --property hw_rng:allowed=True m1.tiny
1229 openstack --os-region-name="$REGION_NAME" flavor create --id 2 --ram 2048 --disk 20 --vcpus 1 --property hw_rng:allowed=True m1.small
1230 openstack --os-region-name="$REGION_NAME" flavor create --id 3 --ram 4096 --disk 40 --vcpus 2 --property hw_rng:allowed=True m1.medium
1231 openstack --os-region-name="$REGION_NAME" flavor create --id 4 --ram 8192 --disk 80 --vcpus 4 --property hw_rng:allowed=True m1.large
1232 openstack --os-region-name="$REGION_NAME" flavor create --id 5 --ram 16384 --disk 160 --vcpus 8 --property hw_rng:allowed=True m1.xlarge
Dan Smithd3d21392016-04-06 14:06:00 -07001233 fi
Dan Smith4b205db2016-04-04 10:37:11 -07001234 fi
1235}
Dean Troyercc6b4432013-04-08 15:38:03 -05001236
Dean Troyerbf67c192012-09-21 15:09:37 -05001237# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +11001238$_XTRACE_LIB_NOVA
Sean Dague584d90e2013-03-29 14:34:53 -04001239
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01001240# Tell emacs to use shell-script-mode
1241## Local variables:
1242## mode: shell-script
1243## End: