
Partial upgrade support was a very hacky hybrid state of no stopping some services so not everything is upgraded to new code levels. Now that we have a multinode upgrade model in the gate we don't need this any more, and we should burn this with fire so that more folks don't go down this path. Change-Id: I2b1b440aa3cccfb2b72e65e41809c359438024be
26 lines
563 B
Bash
Executable File
26 lines
563 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
#
|
|
|
|
set -o errexit
|
|
|
|
source $GRENADE_DIR/grenaderc
|
|
source $GRENADE_DIR/functions
|
|
|
|
# We need base DevStack functions for this
|
|
source $BASE_DEVSTACK_DIR/functions
|
|
source $BASE_DEVSTACK_DIR/stackrc # needed for status directory
|
|
source $BASE_DEVSTACK_DIR/lib/tls
|
|
source $BASE_DEVSTACK_DIR/lib/apache
|
|
source $BASE_DEVSTACK_DIR/lib/nova
|
|
|
|
set -o xtrace
|
|
|
|
stop_nova
|
|
|
|
# TODO(sdague): list all the services
|
|
SERVICES_DOWN="nova-api nova-conductor nova-scheduler nova-compute"
|
|
|
|
# sanity check that services are actually down
|
|
ensure_services_stopped $SERVICES_DOWN
|