Followup 904781 on Debian/Ubuntu

Seems [1] fixed rpm distros, but not deb.

[1]: https://review.opendev.org/#/q/Iddd1f1ee6d4cd6b9a15ead323178052fe6b6e4fb

Closes-Bug: #2042954
Change-Id: I26369f7c570c6c9d493f17509db0aa8264e6f3b2
This commit is contained in:
Michal Nasiadka 2024-03-18 17:12:22 +01:00 committed by Maksim Malchuk
parent 375a2f603d
commit d099063c80
2 changed files with 13 additions and 1 deletions

View File

@ -127,7 +127,13 @@ RUN ln -s neutron-base-source/* neutron \
cp /plugins/$neutron_plugins/etc/neutron/rootwrap.d/* /etc/neutron/rootwrap.d; \
fi; \
done; \
fi
fi \
{% if base_package_type == 'deb' %}
{# NOTE(mnasiadka): Use the system's python3-pyroute2 0.6.4-3ubuntu2 (with fixes from upstream 0.6.10) rather than 0.6.6 from upper-constraints.txt LP#2042954 #}
&& pip uninstall -y pyroute2 pyroute2.core pyroute2.ethtool pyroute2.ipdb pyroute2.ipset pyroute2.ndb pyroute2.nftables pyroute2.nslink
{% else %}
&& true
{% endif %}
{% endif %}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue with Neutron OVN metadata agent when running on hosts using
Ubuntu Jammy 22.04. `LP#1995735
<https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1995735>`__