From 7f6831ed3cf0fcb5fa0f555bff038122f98154f7 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Mon, 4 May 2020 20:13:16 +0000 Subject: [PATCH] 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 04c20f118a44e0385e64561e54c30fc2a8615c49) --- deployment/neutron/neutron-ovs-agent-container-puppet.yaml | 5 +++++ .../notes/IGMP-snooping-for-ml2ovs-d794ed4eab7c098c.yaml | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 releasenotes/notes/IGMP-snooping-for-ml2ovs-d794ed4eab7c098c.yaml diff --git a/deployment/neutron/neutron-ovs-agent-container-puppet.yaml b/deployment/neutron/neutron-ovs-agent-container-puppet.yaml index b0db09e956..5c549418e5 100644 --- a/deployment/neutron/neutron-ovs-agent-container-puppet.yaml +++ b/deployment/neutron/neutron-ovs-agent-container-puppet.yaml @@ -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): diff --git a/releasenotes/notes/IGMP-snooping-for-ml2ovs-d794ed4eab7c098c.yaml b/releasenotes/notes/IGMP-snooping-for-ml2ovs-d794ed4eab7c098c.yaml new file mode 100644 index 0000000000..501ef81687 --- /dev/null +++ b/releasenotes/notes/IGMP-snooping-for-ml2ovs-d794ed4eab7c098c.yaml @@ -0,0 +1,3 @@ +--- +features: + - Adds support for IGMP snooping (Multicast) in the Neutron ML2/OVS driver.