blob: de42b16d7e05494aae90626073a2fff4703a3f72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/bash
#
# This delivers the ceph-storage upgrade script to be invoked as part of the tripleo
# major upgrade workflow.
#
set -eu
UPGRADE_SCRIPT=/root/tripleo_upgrade_node.sh
cat > $UPGRADE_SCRIPT << ENDOFCAT
### DO NOT MODIFY THIS FILE
### This file is automatically delivered to the ceph-storage nodes as part of the
### tripleo upgrades workflow
function systemctl_ceph {
action=\$1
systemctl \$action ceph
}
# "so that mirrors aren't rebalanced as if the OSD died" - gfidente
ceph osd set noout
systemctl_ceph stop
yum -y install python-zaqarclient # needed for os-collect-config
yum -y update
systemctl_ceph start
ceph osd unset noout
ENDOFCAT
# ensure the permissions are OK
chmod 0755 $UPGRADE_SCRIPT
|