Merge "Enable ARP responder for L2 population"

This commit is contained in:
Jenkins 2015-09-29 11:13:45 +00:00 committed by Gerrit Code Review
commit ce2cd1edae
3 changed files with 7 additions and 0 deletions

View File

@ -94,6 +94,7 @@ class openstack::network::neutron_agents (
tunnel_types => $tunnel_types,
enable_distributed_routing => $agent_mode ? { 'legacy' => false, default => true},
l2_population => $l2_population,
arp_responder => $l2_population,
manage_service => true,
enabled => true,
}

View File

@ -188,6 +188,9 @@ describe manifest do
should contain_class('openstack::network').with(
'l2_population' => neutron_l2_pop
)
should contain_class('neutron::agents::ml2::ovs').with(
'arp_responder' => neutron_l2_pop,
)
end
enable = Noop.hiera_structure('neutron_config/L2/segmentation_type') == 'gre'

View File

@ -134,6 +134,9 @@ describe manifest do
should contain_class('openstack::network').with(
'l2_population' => l2_pop,
)
should contain_class('neutron::agents::ml2::ovs').with(
'arp_responder' => l2_pop,
)
end
end