7bf4edde5d
This adds a better completion message when upgrading a non controller node. Change-Id: I1cd765b1998f059702f0c17ccb67d54f6d5db362 Closes-Bug: 1703792
44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
#!/bin/bash
|
|
#
|
|
# This delivers the operator driven upgrade script to be invoked as part of
|
|
# the tripleo major upgrade workflow. The utility 'upgrade-non-controller.sh'
|
|
# is used from the undercloud to invoke the /root/tripleo_upgrade_node.sh
|
|
#
|
|
set -eu
|
|
|
|
UPGRADE_SCRIPT=/root/tripleo_upgrade_node.sh
|
|
|
|
cat > $UPGRADE_SCRIPT << ENDOFCAT
|
|
### DO NOT MODIFY THIS FILE
|
|
### This file is automatically delivered to those nodes where the
|
|
### disable_upgrade_deployment flag is set in roles_data.yaml.
|
|
|
|
set -eu
|
|
NOVA_COMPUTE=""
|
|
if hiera -c /etc/puppet/hiera.yaml service_names | grep nova_compute ; then
|
|
NOVA_COMPUTE="true"
|
|
fi
|
|
SWIFT_STORAGE=""
|
|
if hiera -c /etc/puppet/hiera.yaml service_names | grep swift_storage ; then
|
|
SWIFT_STORAGE="true"
|
|
fi
|
|
|
|
DEBUG="true"
|
|
SCRIPT_NAME=$(basename $0)
|
|
$(declare -f log_debug)
|
|
|
|
NODE_NAME=\$(cat /etc/hostname)
|
|
|
|
log_debug "$UPGRADE_SCRIPT has completed on \${NODE_NAME} - moving onto ansible playbooks"
|
|
|
|
echo "----------------------------------------------------
|
|
The TripleO upgrade tasks has completed on \${NODE_NAME}
|
|
Moving onto ansible playbooks
|
|
----------------------------------------------------"
|
|
|
|
ENDOFCAT
|
|
|
|
# ensure the permissions are OK
|
|
chmod 0755 $UPGRADE_SCRIPT
|
|
|