Neutron ML2/OVS: add support to enable of IGMP snooping

Neutron ML2/OVS backend allows now to enable support for IGMP
snooping in the br-int bridge. This can be done through
"igmp_snooping_enable" config option which can be set for
neutron-ovs-agent.
Patch [1] added support for it in puppet-neutron module.
In patch [2] support to enable this option for ML2/OVN backend
was added but we missed same change for ML2/OVS. Now we will
have it too.

[1] https://review.opendev.org/#/c/707367/
[2] https://review.opendev.org/#/c/714462/

Conflicts:
    deployment/neutron/neutron-ovs-agent-container-puppet.yaml

Change-Id: I195410768d2d6a219bdda88a74fed3c29e1113a9
(cherry picked from commit 04c20f118a)
This commit is contained in:
Slawek Kaplonski 2020-05-04 20:13:16 +00:00
parent 0602d12e5f
commit 7f6831ed3c
2 changed files with 8 additions and 0 deletions

View File

@ -129,6 +129,10 @@ parameters:
description: |
Set additional ethertypes to to be configured on neutron firewalls.
type: comma_delimited_list
NeutronEnableIgmpSnooping:
description: Enable IGMP Snooping.
type: boolean
default: false
conditions:
no_firewall_driver: {equals : [{get_param: NeutronOVSFirewallDriver}, '']}
@ -190,6 +194,7 @@ outputs:
neutron::agents::ml2::ovs::tunnel_types: {get_param: NeutronTunnelTypes}
neutron::agents::ml2::ovs::extensions: {get_param: NeutronAgentExtensions}
neutron::agents::ml2::ovs::tunnel_csum: {get_param: NeutronOVSTunnelCsum}
neutron::agents::ml2::ovs::igmp_snooping_enable: {get_param: NeutronEnableIgmpSnooping}
# NOTE: bind IP is found in hiera replacing the network name with the
# local node IP for the given network; replacement examples
# (eg. for internal_api):

View File

@ -0,0 +1,3 @@
---
features:
- Adds support for IGMP snooping (Multicast) in the Neutron ML2/OVS driver.