We high-spiritedly announce the release of: ovn-bgp-agent 4.0.0 This release is part of the epoxy release series. The source is available from: https://opendev.org/openstack/ovn-bgp-agent Download the package from: https://tarballs.openstack.org/ovn-bgp-agent/ Please report issues through: https://bugs.launchpad.net/ovn-bgp-agent/+bugs For more details, please see below. Changes in ovn-bgp-agent 3.0.0..4.0.0 ------------------------------------- 7c28bab functional: Use shutil to find privsep-helper executable 019605c Add BGP NIC IP cleanup logic for the OVN driver 5434745 Use BFD sessions for local OVN 0840f4a Add option to avoid VRF removal df2af13 Expose floating ips attached to virtual ports 0b22516 Introduce multinode tempest job dee105f Update default envlist eaecae8 Split _ensure_ovn_network_link function de21b62 Fix text from CrLrpChassisChangeWithdrawEvent docstring 1986ad2 Add a static FDB entry to fabric-facing bridges 89421f8 Support ovn-bgp agent with DVR disabled d7e275e Use neutron_lib constants a device name limiter b0325ea Handle trimming of vlan interface namings 4f8fe6a Fix type for config option bgp_chassis_id a01dddc functional: Introduce a base class for OVN func testing 01872ea Bump ovsdbapp to 2.8.0 8a7ebde Move devstack job to experimental e3a509c Introduce LSP address column parsing functions 62ecacc nb driver: Don't expose FIP if the external_mac is not set 9e60956 Expose FIP if external_mac was set ee15a0a Remove test_ovn_bgp_agent 7e348da Refactor ovn_bgp_agent.privileged.ovs_vsctl e615106 Add retries to get_device_port_at_ovs 46abd9b Make in_port consistent type 59ad44a Fix live migrations and possibly also VIP failovers f503911 Bump hacking d49179b Drop Python 3.6/7 support ba53e21 Update master for stable/2024.2 Diffstat (except docs and test files) ------------------------------------- bindep.txt | 10 + devstack/lib/ovn-bgp-agent | 6 +- devstack/settings | 1 + etc/frr_with_bfd/daemons | 42 ++++ etc/frr_with_bfd/frr.conf | 69 ++++++ ovn_bgp_agent/config.py | 20 +- ovn_bgp_agent/constants.py | 10 +- ovn_bgp_agent/drivers/openstack/nb_exceptions.py | 21 ++ .../drivers/openstack/nb_ovn_bgp_driver.py | 202 +++++++++++++--- ovn_bgp_agent/drivers/openstack/ovn_bgp_driver.py | 2 +- ovn_bgp_agent/drivers/openstack/utils/evpn.py | 17 +- ovn_bgp_agent/drivers/openstack/utils/nat.py | 33 +++ ovn_bgp_agent/drivers/openstack/utils/ovn.py | 208 ++++++---------- ovn_bgp_agent/drivers/openstack/utils/ovs.py | 93 ++++---- ovn_bgp_agent/drivers/openstack/utils/port.py | 30 ++- ovn_bgp_agent/drivers/openstack/utils/wire.py | 248 +++++++++++-------- .../drivers/openstack/watchers/base_watcher.py | 48 ++++ .../drivers/openstack/watchers/nb_bgp_watcher.py | 262 ++++++++++++++++++++- ovn_bgp_agent/exceptions.py | 9 + ovn_bgp_agent/privileged/linux_net.py | 25 +- ovn_bgp_agent/privileged/ovs_vsctl.py | 28 ++- .../functional/drivers/openstack/utils/__init__.py | 0 .../functional/drivers/openstack/utils/test_ovn.py | 227 ++++++++++++++++++ .../drivers/openstack/watchers/__init__.py | 0 .../openstack/watchers/test_nb_bgp_watcher.py | 133 +++++++++++ .../drivers/openstack/test_nb_ovn_bgp_driver.py | 99 +++++++- .../unit/drivers/openstack/utils/test_evpn.py | 13 + .../unit/drivers/openstack/utils/test_port.py | 69 ++++++ .../unit/drivers/openstack/utils/test_wire.py | 42 ++-- .../openstack/watchers/test_nb_bgp_watcher.py | 158 ++++++++++++- ovn_bgp_agent/utils/linux_net.py | 22 +- playbooks/configure_bgp_networking.yaml | 171 ++++++++++++++ .../bump-min-pyver-to-38-6cb5bf75990aa8e2.yaml | 5 + .../notes/skip_vrf_delete-fcc8ac95db4fde21.yaml | 8 + releasenotes/source/2024.2.rst | 6 + releasenotes/source/index.rst | 1 + requirements.txt | 9 +- roles/leaf/tasks/main.yml | 131 +++++++++++ roles/leaf/templates/frr.conf.j2 | 77 ++++++ roles/spine/tasks/main.yml | 131 +++++++++++ roles/spine/templates/frr.conf.j2 | 53 +++++ setup.cfg | 6 +- test-requirements.txt | 6 +- tools/setup-ovs.sh | 18 ++ tox.ini | 11 +- zuul.d/project.yaml | 2 +- zuul.d/tempest-multinode.yaml | 117 +++++++++ zuul.d/tempest-singlenode.yaml | 15 -- 58 files changed, 2871 insertions(+), 605 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 1b003b7..1f100c1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ -# The order of packages is significant, because pip processes them in the order -# of appearance. Changing the order has an impact on the overall integration -# process, which may cause wedges in the gate later. - +# Requirements lower bounds listed here are our best effort to keep them up to +# date but we do not test them so no guarantee of having them all correct. If +# you find any incorrect lower bounds, let us know or propose a fix. @@ -17 +16 @@ ovs>=2.8.0 # Apache-2.0 -ovsdbapp>=1.16.0 # Apache-2.0 +ovsdbapp>=2.10.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index 8e2cc74..9472f33 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,5 +1 @@ -# The order of packages is significant, because pip processes them in the order -# of appearance. Changing the order has an impact on the overall integration -# process, which may cause wedges in the gate later. - -hacking>=3.0,<3.1 # Apache-2.0 +hacking>=7.0,<7.1 # Apache-2.0
participants (1)
-
no-reply@openstack.org