Comment 13 for bug 1995469

Revision history for this message
DUFOUR Olivier (odufourc) wrote :

Workaround to manually install the python3-pyroute2 packages from the Archive tracker on Jammy-Zed seems to fix temporarily the issue as well

To download the packages from one machine with Zed repository enabled on Jammy :

for package in $(apt search python3-pyroute2 2>/dev/null | grep installed | cut -f 1 -d '/'); do apt download $package; done
$ ls pyroute2/ -l
total 432
-rw-r--r-- 1 ubuntu ubuntu 171920 Feb 20 05:33 python3-pyroute2.core_0.6.7-3ubuntu1~cloud0_all.deb
-rw-r--r-- 1 ubuntu ubuntu 23300 Feb 20 05:33 python3-pyroute2.ethtool_0.6.7-3ubuntu1~cloud0_all.deb
-rw-r--r-- 1 ubuntu ubuntu 52456 Feb 20 05:33 python3-pyroute2.ipdb_0.6.7-3ubuntu1~cloud0_all.deb
-rw-r--r-- 1 ubuntu ubuntu 25964 Feb 20 05:33 python3-pyroute2.ipset_0.6.7-3ubuntu1~cloud0_all.deb
-rw-r--r-- 1 ubuntu ubuntu 66530 Feb 20 05:33 python3-pyroute2.ndb_0.6.7-3ubuntu1~cloud0_all.deb
-rw-r--r-- 1 ubuntu ubuntu 20944 Feb 20 05:33 python3-pyroute2.nftables_0.6.7-3ubuntu1~cloud0_all.deb
-rw-r--r-- 1 ubuntu ubuntu 24546 Feb 20 05:33 python3-pyroute2.nslink_0.6.7-3ubuntu1~cloud0_all.deb
-rw-r--r-- 1 ubuntu ubuntu 21990 Feb 20 05:33 python3-pyroute2.protocols_0.6.7-3ubuntu1~cloud0_all.deb
-rw-r--r-- 1 ubuntu ubuntu 18656 Feb 20 05:33 python3-pyroute2_0.6.7-3ubuntu1~cloud0_all.deb

Install all the following packages on all nova-computes :
for i in {0..2}; do juju scp -- -r ./pyroute2 $i:~/ ; juju ssh $i sudo dpkg -i ./pyroute2/* ; done
juju run -a nova-compute systemctl restart neutron-ovn-metadata-agent.service