[OVN] Add binding-extended to the ML2_SUPPORTED_API_EXTENSIONS

This extension should be enabled with ML2/OVN backend also but
recent changes in how supported extensions are calculated ([1])
it was filtered out.

[1] https://review.opendev.org/c/openstack/neutron/+/793141

Closes-Bug: #1933954
Change-Id: Ic8ab322683e72101a8f797b108bf23bc169092cb
This commit is contained in:
Slawek Kaplonski 2021-06-29 12:10:39 +02:00
parent cbbab2fac5
commit cde0f68f9e
2 changed files with 4 additions and 0 deletions

View File

@ -108,6 +108,8 @@ The following Neutron API extensions are supported with OVN:
+----------------------------------+-----------------------------+
| Port Binding | binding |
+----------------------------------+-----------------------------+
| Port Bindings Extended | binding-extended |
+----------------------------------+-----------------------------+
| Port Forwarding | port_forwarding |
+----------------------------------+-----------------------------+
| Port MAC address Regenerate | port-mac-address-regenerate |

View File

@ -43,6 +43,7 @@ from neutron_lib.api.definitions import port_numa_affinity_policy
from neutron_lib.api.definitions import port_resource_request
from neutron_lib.api.definitions import port_security
from neutron_lib.api.definitions import portbindings
from neutron_lib.api.definitions import portbindings_extended as pbe_ext
from neutron_lib.api.definitions import project_id
from neutron_lib.api.definitions import provider_net
from neutron_lib.api.definitions import qos
@ -90,6 +91,7 @@ ML2_SUPPORTED_API_EXTENSIONS = [
auto_allocated_topology.ALIAS,
az_def.ALIAS,
portbindings.ALIAS,
pbe_ext.ALIAS,
default_subnetpools.ALIAS,
dns.ALIAS,
external_net.ALIAS,