Merge "[OVN] Add 'port-mac-address-regenerate' to the supported extensions"

This commit is contained in:
Zuul 2021-06-13 03:03:52 +00:00 committed by Gerrit Code Review
commit f042d690be
2 changed files with 63 additions and 59 deletions

View File

@ -73,62 +73,64 @@ services:
The following Neutron API extensions are supported with OVN: The following Neutron API extensions are supported with OVN:
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Extension Name | Extension Alias | | Extension Name | Extension Alias |
+==================================+===========================+ +==================================+=============================+
| Allowed Address Pairs | allowed-address-pairs | | Allowed Address Pairs | allowed-address-pairs |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Auto Allocated Topology Services | auto-allocated-topology | | Auto Allocated Topology Services | auto-allocated-topology |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Availability Zone | availability_zone | | Availability Zone | availability_zone |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Default Subnetpools | default-subnetpools | | Default Subnetpools | default-subnetpools |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Domain Name System (DNS) | dns_integration | | Domain Name System (DNS) | dns_integration |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Multi Provider Network | multi-provider | | Multi Provider Network | multi-provider |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Network IP Availability | network-ip-availability | | Network IP Availability | network-ip-availability |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Network Segment | segment | | Network Segment | segment |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Neutron external network | external-net | | Neutron external network | external-net |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Neutron Extra DHCP opts | extra_dhcp_opt | | Neutron Extra DHCP opts | extra_dhcp_opt |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Neutron Extra Route | extraroute | | Neutron Extra Route | extraroute |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Neutron L3 external gateway | ext-gw-mode | | Neutron L3 external gateway | ext-gw-mode |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Neutron L3 Router | router | | Neutron L3 Router | router |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Network MTU | net-mtu | | Network MTU | net-mtu |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Packet Logging | logging | | Packet Logging | logging |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Port Binding | binding | | Port Binding | binding |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Port Forwarding | port_forwarding | | Port Forwarding | port_forwarding |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Port MAC address Regenerate | port-mac-address-regenerate |
+----------------------------------+-----------------------------+
| Port Security | port-security | | Port Security | port-security |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Provider Network | provider | | Provider Network | provider |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Quality of Service | qos | | Quality of Service | qos |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Quota management support | quotas | | Quota management support | quotas |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| RBAC Policies | rbac-policies | | RBAC Policies | rbac-policies |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Resource revision numbers | standard-attr-revisions | | Resource revision numbers | standard-attr-revisions |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| security-group | security-group | | security-group | security-group |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| standard-attr-description | standard-attr-description | | standard-attr-description | standard-attr-description |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Subnet Allocation | subnet_allocation | | Subnet Allocation | subnet_allocation |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Tag support | standard-attr-tag | | Tag support | standard-attr-tag |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+
| Time Stamp Fields | standard-attr-timestamp | | Time Stamp Fields | standard-attr-timestamp |
+----------------------------------+---------------------------+ +----------------------------------+-----------------------------+

View File

@ -36,6 +36,7 @@ from neutron_lib.api.definitions import network_mtu
from neutron_lib.api.definitions import network_mtu_writable from neutron_lib.api.definitions import network_mtu_writable
from neutron_lib.api.definitions import pagination from neutron_lib.api.definitions import pagination
from neutron_lib.api.definitions import port_device_profile from neutron_lib.api.definitions import port_device_profile
from neutron_lib.api.definitions import port_mac_address_regenerate
from neutron_lib.api.definitions import port_numa_affinity_policy 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_resource_request
from neutron_lib.api.definitions import port_security from neutron_lib.api.definitions import port_security
@ -94,6 +95,7 @@ ML2_SUPPORTED_API_EXTENSIONS = [
network_availability_zone.ALIAS, network_availability_zone.ALIAS,
network_ip_availability.ALIAS, network_ip_availability.ALIAS,
port_device_profile.ALIAS, port_device_profile.ALIAS,
port_mac_address_regenerate.ALIAS,
port_numa_affinity_policy.ALIAS, port_numa_affinity_policy.ALIAS,
port_security.ALIAS, port_security.ALIAS,
provider_net.ALIAS, provider_net.ALIAS,