Merge "Make the DB URIs host-independent for all services"
[apex-tripleo-heat-templates.git] / extraconfig / tasks / tripleo_upgrade_node.sh
1 #!/bin/bash
2 #
3 # This delivers the operator driven upgrade script to be invoked as part of
4 # the tripleo major upgrade workflow. The utility 'upgrade-non-controller.sh'
5 # is used from the undercloud to invoke the /root/tripleo_upgrade_node.sh
6 #
7 set -eu
8
9 UPGRADE_SCRIPT=/root/tripleo_upgrade_node.sh
10
11 cat > $UPGRADE_SCRIPT << ENDOFCAT
12 ### DO NOT MODIFY THIS FILE
13 ### This file is automatically delivered to those nodes where the
14 ### disable_upgrade_deployment flag is set in roles_data.yaml.
15
16 set -eu
17 NOVA_COMPUTE=""
18 if hiera -c /etc/puppet/hiera.yaml service_names | grep nova_compute ; then
19    NOVA_COMPUTE="true"
20 fi
21 SWIFT_STORAGE=""
22 if hiera -c /etc/puppet/hiera.yaml service_names | grep swift_storage ; then
23    SWIFT_STORAGE="true"
24 fi
25
26 DEBUG="true"
27 SCRIPT_NAME=$(basename $0)
28 $(declare -f log_debug)
29 $(declare -f manage_systemd_service)
30 $(declare -f systemctl_swift)
31
32 # pin nova messaging +-1 for the nova-compute service
33 if [[ -n \$NOVA_COMPUTE ]]; then
34     crudini  --set /etc/nova/nova.conf upgrade_levels compute auto
35 fi
36
37 $(declare -f special_case_ovs_upgrade_if_needed)
38 special_case_ovs_upgrade_if_needed
39
40 yum -y install python-zaqarclient  # needed for os-collect-config
41 if [[ -n \$SWIFT_STORAGE ]]; then
42     systemctl_swift stop
43 fi
44 yum -y update
45 if [[ -n \$SWIFT_STORAGE ]]; then
46     systemctl_swift start
47 fi
48 # Due to bug#1640177 we need to restart compute agent
49 if [[ -n \$NOVA_COMPUTE ]]; then
50     echo "Restarting openstack ceilometer agent compute"
51     systemctl restart openstack-ceilometer-compute
52 fi
53
54 # Apply puppet manifest to converge just right after the ${ROLE} upgrade
55 $(declare -f run_puppet)
56 for step in 1 2 3 4 5 6; do
57     if ! run_puppet /root/${ROLE}_puppet_config.pp ${ROLE} \${step}; then
58          echo "Puppet failure at step \${step}"
59          exit 1
60     fi
61 done
62 ENDOFCAT
63
64 # ensure the permissions are OK
65 chmod 0755 $UPGRADE_SCRIPT
66