Enable neutron-dynamic-routing service plugin

Upstream Neutron has declared that the neutron-dynamic-routing service
plugin is now supported when OVN L3 service plugin and mechanism driver
are in use.

https://review.opendev.org/c/openstack/neutron/+/864051
4d1a7bd0bc

This change removes the NDR plugin from the filter so that the plugin
is enabled.

Change-Id: Ic101d8c9fd7a674103ea53fe0b56d3c3f315595c
This commit is contained in:
Dmitrii Shcherbakov 2023-05-25 13:34:41 +03:00
parent 3fc51fadd8
commit 26287e88fd
3 changed files with 0 additions and 4 deletions

View File

@ -84,8 +84,6 @@ class BaseNeutronAPIPluginCharm(charms_openstack.charm.OpenStackCharm):
'port_forwarding',
# OVN has its own service driver for that replaces Neutron ``router``
'router',
# Neutron Dynamic Routing is not supported at this time
'neutron_dynamic_routing.services.bgp.bgp_plugin.BgpPlugin',
# VPNaaS is not supported
'vpnaas',
]

View File

@ -117,7 +117,6 @@ class TestNeutronAPIPluginOvnCharm(Helper):
c = neutron_api_plugin_ovn.UssuriNeutronAPIPluginCharm()
svc_plugins = (
'router,firewall,firewall_v2,metering,segments,log,'
'neutron_dynamic_routing.services.bgp.bgp_plugin.BgpPlugin,'
'lbaasv2,port_forwarding,vpnaas')
expect = [
'metering',

View File

@ -106,7 +106,6 @@ class TestOvnHandlers(test_utils.PatchHelper):
'openvswitch,hyperv,l2population,sriovnicswitch'),
'service_plugins': (
'router,firewall_v2,metering,segments,'
'neutron_dynamic_routing.services.bgp.bgp_plugin.BgpPlugin,'
'lbaasv2'),
'tenant_network_types': 'gre,vlan,flat,local',
}.get(x)