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

This commit is contained in:
Zuul 2020-05-14 01:32:50 +00:00 committed by Gerrit Code Review
commit 0f7cca3e1b
2 changed files with 8 additions and 0 deletions

View File

@ -139,6 +139,10 @@ parameters:
default: ""
tags:
- role_specific
NeutronEnableIgmpSnooping:
description: Enable IGMP Snooping.
type: boolean
default: false
conditions:
no_firewall_driver: {equals : [{get_param: NeutronOVSFirewallDriver}, '']}
@ -208,6 +212,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.