diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-08-25 10:39:35 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-08-25 10:39:35 +0000 |
commit | 1e9a4bc9109c226d2db05c43511610d7fa6bafad (patch) | |
tree | 0fcc8cf1243b08c56ff3ab5ecbe08a69edf32800 | |
parent | 213099a681a2649612adc7f6df6c37d40c47a8e6 (diff) | |
parent | 47bdf4438a660c7351e7a92c685ff328ad57771f (diff) |
Merge "Make OVS ARP responder feature configurable"
-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 |