We high-spiritedly announce the release of: tap-as-a-service 15.0.0 This release is part of the epoxy release series. The source is available from: https://opendev.org/openstack/tap-as-a-service Download the package from: https://pypi.org/project/tap-as-a-service Please report issues through: https://bugs.launchpad.net/tap-as-a-service/+bugs For more details, please see below. Changes in tap-as-a-service 14.0.0..15.0.0 ------------------------------------------ 22dbac7 Use generated config files in devstack 7ff8685 Documentation for tap-mirrors e6f997f CLI for Tap Mirrors a2523e1 TAAS tap-mirror OVN driver 7acc665 Tap Mirror OVS driver 8e33b0b Remove unused Babel 7984544 GRE/ERSPAN mirroring for taas 17a2a81 Prohibit installation in too old python versions 4d9189d Doc: add documentation for usage and driver details for SRIOV driver df325de Doc: add documentation for usage and flow examples for OVS c4e4066 Do not set ageing in case of system datapath type 4a7fbb2 pep8: Issue on Noble (U. 24.04) with pylint 3f348f81 Fix reference to ``TestModelsMigrations`` class 2ef1b1f reno: Update master for unmaintained/2023.1 b8c65a9 pyupgrade changes for Python3.9+ 647b902 Update jobs based on testing runtime for 2025.1 52598e7 Remove unused sections from setup.cfg 5111cee Remove unused openstack-common.conf e71d241 Squash tass.ini and taas_plugin.ini 4fd17b7 Generate plugin config file 884aabe Update master for stable/2024.2 7b3fe88 Doc: remove sphinxcontrib-*diag from doc dependencies Diffstat (except docs and test files) ------------------------------------- .gitignore | 3 + .pylintrc | 2 - .zuul.yaml | 2 +- API_REFERENCE.rst | 70 ++- babel.cfg | 2 - devstack/README.rst | 16 +- devstack/plugin.sh | 32 +- devstack/settings | 10 +- etc/neutron/policy.yaml.sample | 21 + etc/oslo-config-generator/taas_agent.ini | 5 + etc/oslo-config-generator/taas_plugin.ini | 5 + etc/taas.ini | 3 - etc/taas_plugin.ini | 7 - neutron_taas/common/config.py | 4 +- .../expand/f8f1f10ebaf9_mirroring_for_taas.py | 49 ++ .../alembic_migration/versions/EXPAND_HEAD | 2 +- neutron_taas/db/tap_mirror_db.py | 139 +++++ neutron_taas/extensions/tap_mirror.py | 78 +++ neutron_taas/opts.py | 31 + neutron_taas/policies/__init__.py | 2 + neutron_taas/policies/tap_mirror.py | 78 +++ .../services/taas/agents/common/taas_agent.py | 52 ++ .../services/taas/agents/extensions/taas.py | 2 +- .../services/taas/agents/taas_agent_api.py | 12 +- .../services/taas/drivers/linux/ovs_taas.py | 110 +++- .../services/taas/drivers/linux/ovs_utils.py | 2 +- .../services/taas/drivers/linux/sriov_nic_taas.py | 1 + .../services/taas/drivers/linux/sriov_nic_utils.py | 4 +- .../services/taas/service_drivers/__init__.py | 18 +- .../services/taas/service_drivers/ovn/__init__.py | 0 .../services/taas/service_drivers/ovn/helper.py | 124 ++++ .../taas/service_drivers/ovn/ovsdb/__init__.py | 0 .../service_drivers/ovn/ovsdb/impl_idl_taas.py | 153 +++++ .../services/taas/service_drivers/ovn/taas_ovn.py | 111 ++++ .../taas/service_drivers/service_driver_context.py | 13 +- .../taas/service_drivers/taas_agent_api.py | 15 +- .../services/taas/service_drivers/taas_rpc.py | 53 +- neutron_taas/services/taas/tap_mirror_plugin.py | 155 +++++ neutron_taas/taas_client/osc/tap_mirror.py | 222 +++++++ .../unit/services/drivers/test_linux_ovs_taas.py | 381 ++++++++++++ .../drivers/test_linux_sriov_nic_driver.py | 93 ++- .../services/drivers/test_linux_sriov_utils.py | 2 +- .../ovn/ovsdb/schema_files/ovn-nb.ovsschema | 665 +++++++++++++++++++++ .../unit/services/ovn/ovsdb/test_impl_idl_taas.py | 74 +++ .../unit/services/taas/test_tap_mirror_plugin.py | 143 +++++ .../unit/taas_client/osc/test_osc_tap_flow.py | 10 +- .../unit/taas_client/osc/test_osc_tap_mirror.py | 267 +++++++++ .../unit/taas_client/osc/test_osc_tap_service.py | 10 +- openstack-common.conf | 6 - ...ap-mirror-with-ovn-driver-ff26bc79d3d411be.yaml | 8 + ...ap-mirror-with-ovs-driver-7f09654e1e960a0d.yaml | 4 + releasenotes/source/2023.1.rst | 2 +- releasenotes/source/2024.2.rst | 6 + releasenotes/source/conf.py | 14 +- releasenotes/source/index.rst | 1 + requirements.txt | 2 +- setup.cfg | 41 +- test-requirements.txt | 2 - tools/generate_config_file_samples.sh | 28 + tox.ini | 14 +- 80 files changed, 4490 insertions(+), 192 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 59dd2ca..845f6d1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2 +1,0 @@ pbr>=5.5.0 # Apache-2.0 -Babel>=2.8.0 # BSD @@ -5,0 +5 @@ openstacksdk>=0.102.0 # Apache-2.0 +python-openstackclient>=3.12.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index 9e788ca..fbc643d 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -14,2 +13,0 @@ testtools>=2.4.0 # MIT -astroid>=2.12.4 # LGPLv2.1 -pylint==2.17.4 # GPLv2
participants (1)
-
no-reply@openstack.org