Merge "Add deployed-server backwards compatible template"
[apex-tripleo-heat-templates.git] / extraconfig / tasks / major_upgrade_compute.sh
1 #!/bin/bash
2 #
3 # This delivers the compute upgrade script to be invoked as part of the tripleo
4 # major upgrade workflow.
5 #
6 set -eu
7
8 UPGRADE_SCRIPT=/root/tripleo_upgrade_node.sh
9
10 cat > $UPGRADE_SCRIPT << ENDOFCAT
11 ### DO NOT MODIFY THIS FILE
12 ### This file is automatically delivered to the compute nodes as part of the
13 ### tripleo upgrades workflow
14
15 set -eu
16
17 # pin nova to kilo (messaging +-1) for the nova-compute service
18
19 crudini  --set /etc/nova/nova.conf upgrade_levels compute $upgrade_level_nova_compute
20
21 $(declare -f special_case_ovs_upgrade_if_needed)
22 special_case_ovs_upgrade_if_needed
23
24 yum -y install python-zaqarclient  # needed for os-collect-config
25 yum -y update
26
27 # Due to bug#1640177 we need to restart compute agent
28 echo "Restarting openstack ceilometer agent compute"
29 systemctl restart openstack-ceilometer-compute
30
31 ENDOFCAT
32
33 # ensure the permissions are OK
34 chmod 0755 $UPGRADE_SCRIPT
35