From 179d3847ee43444f6ac6954cc4262c415c3eff1d Mon Sep 17 00:00:00 2001 From: Sean Mooney Date: Tue, 10 Nov 2020 14:10:11 +0000 Subject: [PATCH] enable ussuri cloud archive on ubuntu bionic This change updates bionic installs to use the ussuri cloud archive to enable the use of libvirt 6.0.0. This is required to prevent a libvirt bug that casuse intermient failures fo the tempest test_live_block_migration_paused testcase. Change-Id: I9c395c2b5fdfe6ad9a43477280e88e9a9b34f057 Related-Bug: 1901739 (cherry picked from commit 3ae895115c5f7d8f8abe3500f3203780d2269f82) --- tools/fixup_stuff.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/fixup_stuff.sh b/tools/fixup_stuff.sh index a3bda2b74f..64605798c0 100755 --- a/tools/fixup_stuff.sh +++ b/tools/fixup_stuff.sh @@ -77,10 +77,10 @@ function fixup_ubuntu { # If we are on a nodepool provided host and it has told us about # where we can find local mirrors then use that mirror. source /etc/ci/mirror_info.sh - sudo apt-add-repository -y "deb $NODEPOOL_UCA_MIRROR bionic-updates/train main" + sudo apt-add-repository -y "deb $NODEPOOL_UCA_MIRROR bionic-updates/ussuri main" else # Enable UCA:train for updated versions of QEMU and libvirt - sudo add-apt-repository -y cloud-archive:train + sudo add-apt-repository -y cloud-archive:ussuri fi REPOS_UPDATED=False apt_get_update