diff options
author | marios <marios@redhat.com> | 2017-08-01 17:24:18 +0300 |
---|---|---|
committer | marios <marios@redhat.com> | 2017-08-01 17:24:18 +0300 |
commit | 94a3c82c03687e5c9d2d9f4d82ed6654dcf04f86 (patch) | |
tree | 53e64a5874ae117c5148dbbdb41194b4e70334d5 | |
parent | 960b9802016a89bd1fa007a1d2a5d703d168fccd (diff) |
Adds stop and disable for libvirtd on upgrade to containers
Adds this into the tripleo_upgrade_node.sh executed by the
operator for the major upgrade see the bug for more info
Change-Id: Ic54b48b149594e8ea08e95152111bcdaf7b252b7
Closes-Bug: 1707926
-rw-r--r-- | extraconfig/tasks/tripleo_upgrade_node.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/extraconfig/tasks/tripleo_upgrade_node.sh b/extraconfig/tasks/tripleo_upgrade_node.sh index 1114897f..af49d49d 100644 --- a/extraconfig/tasks/tripleo_upgrade_node.sh +++ b/extraconfig/tasks/tripleo_upgrade_node.sh @@ -51,6 +51,10 @@ if [[ -n \$NOVA_COMPUTE ]]; then log_debug "Restarting openstack ceilometer agent compute" systemctl restart openstack-ceilometer-compute yum install -y openstack-nova-migration + # https://bugs.launchpad.net/tripleo/+bug/1707926 stop&disable libvirtd + log_debug "Stop and disable libvirtd service for upgrade to containers" + systemctl stop libvirtd + systemctl disable libvirtd fi # Apply puppet manifest to converge just right after the ${ROLE} upgrade |