8b900842c0c68b10a9e7b9ba0b3ca42fd681ba77
[apex-tripleo-heat-templates.git] / extraconfig / tasks / major_upgrade_controller_pacemaker_2.sh
1 #!/bin/bash
2
3 set -eu
4
5 cluster_sync_timeout=1800
6
7 # After migrating the cluster to HA-NG the services not under pacemaker's control
8 # are still up and running. We need to stop them explicitely otherwise during the yum
9 # upgrade the rpm %post sections will try to do a systemctl try-restart <service>, which
10 # is going to take a long time because rabbit is down. By having the service stopped
11 # systemctl try-restart is a noop
12
13 for service in $(services_to_migrate); do
14     manage_systemd_service stop "${service%%-clone}"
15     # So the reason for not reusing check_resource_systemd is that
16     # I have observed systemctl is-active returning unknown with at least
17     # one service that was stopped (See LP 1627254)
18     timeout=600
19     tstart=$(date +%s)
20     tend=$(( $tstart + $timeout ))
21     check_interval=3
22     while (( $(date +%s) < $tend )); do
23       if [[ "$(systemctl is-active ${service%%-clone})" = "active" ]]; then
24         echo "$service still active, sleeping $check_interval seconds."
25         sleep $check_interval
26       else
27         # we do not care if it is inactive, unknown or failed as long as it is
28         # not running
29         break
30       fi
31
32     done
33 done
34
35 # In case the mysql package is updated, the database on disk must be
36 # upgraded as well. This typically needs to happen during major
37 # version upgrades (e.g. 5.5 -> 5.6, 5.5 -> 10.1...)
38 #
39 # Because in-place upgrades are not supported across 2+ major versions
40 # (e.g. 5.5 -> 10.1), we rely on logical upgrades via dump/restore cycle
41 # https://bugzilla.redhat.com/show_bug.cgi?id=1341968
42 #
43 # The default is to determine automatically if upgrade is needed based
44 # on mysql package versionning, but this can be overriden manually
45 # to support specific upgrade scenario
46
47 # Calling this function will set the DO_MYSQL_UPGRADE variable which is used
48 # later
49 mysql_need_update
50
51 if [[ -n $(is_bootstrap_node) ]]; then
52     if [ $DO_MYSQL_UPGRADE -eq 1 ]; then
53         backup_flags="--defaults-extra-file=/root/.my.cnf -u root --flush-privileges --all-databases --single-transaction"
54         mysqldump $backup_flags > "$MYSQL_BACKUP_DIR/openstack_database.sql"
55         cp -rdp /etc/my.cnf* "$MYSQL_BACKUP_DIR"
56     fi
57
58     pcs resource disable redis
59     check_resource redis stopped 600
60     pcs resource disable rabbitmq
61     check_resource rabbitmq stopped 600
62     pcs resource disable galera
63     check_resource galera stopped 600
64     pcs resource disable openstack-cinder-volume
65     check_resource openstack-cinder-volume stopped 600
66     # Disable all VIPs before stopping the cluster, so that pcs doesn't use one as a source address:
67     #   https://bugzilla.redhat.com/show_bug.cgi?id=1330688
68     for vip in $(pcs resource show | grep ocf::heartbeat:IPaddr2 | grep Started | awk '{ print $1 }'); do
69       pcs resource disable $vip
70       check_resource $vip stopped 60
71     done
72     pcs cluster stop --all
73 fi
74
75
76 # Swift isn't controlled by pacemaker
77 systemctl_swift stop
78
79 tstart=$(date +%s)
80 while systemctl is-active pacemaker; do
81     sleep 5
82     tnow=$(date +%s)
83     if (( tnow-tstart > cluster_sync_timeout )) ; then
84         echo_error "ERROR: cluster shutdown timed out"
85         exit 1
86     fi
87 done
88
89 # The reason we do an sql dump *and* we move the old dir out of
90 # the way is because it gives us an extra level of safety in case
91 # something goes wrong during the upgrade. Once the restore is
92 # successful we go ahead and remove it. If the directory exists
93 # we bail out as it means the upgrade process had issues in the last
94 # run.
95 if [ $DO_MYSQL_UPGRADE -eq 1 ]; then
96     if [ -d $MYSQL_TEMP_UPGRADE_BACKUP_DIR ]; then
97         echo_error "ERROR: mysql backup dir already exist"
98         exit 1
99     fi
100     mv /var/lib/mysql $MYSQL_TEMP_UPGRADE_BACKUP_DIR
101 fi
102
103 # Special-case OVS for https://bugs.launchpad.net/tripleo/+bug/1635205
104 special_case_ovs_upgrade_if_needed
105
106 yum -y install python-zaqarclient  # needed for os-collect-config
107 yum -y -q update
108
109 # We need to ensure at least those two configuration settings, otherwise
110 # mariadb 10.1+ won't activate galera replication.
111 # wsrep_cluster_address must only be set though, its value does not
112 # matter because it's overriden by the galera resource agent.
113 cat >> /etc/my.cnf.d/galera.cnf <<EOF
114 [mysqld]
115 wsrep_on = ON
116 wsrep_cluster_address = gcomm://localhost
117 EOF
118
119 if [ $DO_MYSQL_UPGRADE -eq 1 ]; then
120     # Scripts run via heat have no HOME variable set and this confuses
121     # mysqladmin
122     export HOME=/root
123
124     mkdir /var/lib/mysql || /bin/true
125     chown mysql:mysql /var/lib/mysql
126     chmod 0755 /var/lib/mysql
127     restorecon -R /var/lib/mysql/
128     mysql_install_db --datadir=/var/lib/mysql --user=mysql
129     chown -R mysql:mysql /var/lib/mysql/
130
131     if [ "$(hiera -c /etc/puppet/hiera.yaml bootstrap_nodeid)" = "$(facter hostname)" ]; then
132         mysqld_safe --wsrep-new-cluster &
133         # We have a populated /root/.my.cnf with root/password here so
134         # we need to temporarily rename it because the newly created
135         # db is empty and no root password is set
136         mv /root/.my.cnf /root/.my.cnf.temporary
137         timeout 60 sh -c 'while ! mysql -e "" &> /dev/null; do sleep 1; done'
138         mysql -u root < "$MYSQL_BACKUP_DIR/openstack_database.sql"
139         mv /root/.my.cnf.temporary /root/.my.cnf
140         mysqladmin -u root shutdown
141         # The import was successful so we may remove the folder
142         rm -r "$MYSQL_BACKUP_DIR"
143     fi
144 fi
145
146 # If we reached here without error we can safely blow away the origin
147 # mysql dir from every controller
148
149 # TODO: What if the upgrade fails on the bootstrap node, but not on
150 # this controller.  Data may be lost.
151 if [ $DO_MYSQL_UPGRADE -eq 1 ]; then
152     rm -r $MYSQL_TEMP_UPGRADE_BACKUP_DIR
153 fi
154
155 # Let's reset the stonith back to true if it was true, before starting the cluster
156 if [[ -n $(is_bootstrap_node) ]]; then
157     if [ -f /var/tmp/stonith-true ]; then
158         pcs -f /var/lib/pacemaker/cib/cib.xml property set stonith-enabled=true
159     fi
160     rm -f /var/tmp/stonith-true
161 fi
162
163 # Pin messages sent to compute nodes to kilo, these will be upgraded later
164 crudini  --set /etc/nova/nova.conf upgrade_levels compute "$upgrade_level_nova_compute"
165 # https://bugzilla.redhat.com/show_bug.cgi?id=1284047
166 # Change-Id: Ib3f6c12ff5471e1f017f28b16b1e6496a4a4b435
167 crudini  --set /etc/ceilometer/ceilometer.conf DEFAULT rpc_backend rabbit
168 # https://bugzilla.redhat.com/show_bug.cgi?id=1284058
169 # Ifd1861e3df46fad0e44ff9b5cbd58711bbc87c97 Swift Ceilometer middleware no longer exists
170 crudini --set /etc/swift/proxy-server.conf pipeline:main pipeline "catch_errors healthcheck cache ratelimit tempurl formpost authtoken keystone staticweb proxy-logging proxy-server"
171 # LP: 1615035, required only for M/N upgrade.
172 crudini --set /etc/nova/nova.conf DEFAULT scheduler_host_manager host_manager
173 # LP: 1627450, required only for M/N upgrade
174 crudini --set /etc/nova/nova.conf DEFAULT scheduler_driver filter_scheduler
175
176 crudini --set /etc/sahara/sahara.conf DEFAULT plugins ambari,cdh,mapr,vanilla,spark,storm
177