diff options
author | Brent Eagles <beagles@redhat.com> | 2016-08-24 15:26:46 -0230 |
---|---|---|
committer | Brent Eagles <beagles@redhat.com> | 2016-08-24 16:34:18 -0230 |
commit | 47bdf4438a660c7351e7a92c685ff328ad57771f (patch) | |
tree | 4d9a0206dd6c7ea0df93eeadfcc0b547ad87b248 /puppet | |
parent | 5c1b9864e36ab259035e614bca6794a7c00b081c (diff) |
Make OVS ARP responder feature configurable
Adds NeutronEnableARPResponder parameter to allow enabling the ARP
responder feature in the OVS agent.
Change-Id: Ide82d890ddbd842383255f5c06c186054ec8f97d
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/services/neutron-ovs-agent.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/puppet/services/neutron-ovs-agent.yaml b/puppet/services/neutron-ovs-agent.yaml index 7520f6f6..5a0ad23c 100644 --- a/puppet/services/neutron-ovs-agent.yaml +++ b/puppet/services/neutron-ovs-agent.yaml @@ -48,6 +48,11 @@ parameters: description: | Enable support for distributed routing in the OVS Agent. type: boolean + NeutronEnableARPResponder: + default: false + description: | + Enable ARP responder feature in the OVS Agent. + type: boolean resources: @@ -68,6 +73,7 @@ outputs: - get_attr: [NeutronBase, role_data, config_settings] neutron::agents::ml2::ovs::l2_population: {get_param: NeutronEnableL2Pop} neutron::agents::ml2::ovs::enable_distributed_routing: {get_param: NeutronEnableDVR} + neutron::agents::ml2::ovs::arp_responder: {get_param: NeutronEnableARPResponder} neutron::agents::ml2::ovs::bridge_mappings: str_replace: template: MAPPINGS |