Merge pull request #78 from hswong3i/multi_host
Add missing send_arp_for_ha for multi_host mode, reference from devstack.
This commit is contained in:
@@ -98,7 +98,10 @@ class openstack::compute(
|
||||
|
||||
include keystone::python
|
||||
|
||||
nova_config { 'multi_host': value => 'True'; }
|
||||
nova_config {
|
||||
'multi_host': value => 'True';
|
||||
'send_arp_for_ha': value => 'True';
|
||||
}
|
||||
if ! $public_interface {
|
||||
fail('public_interface must be defined for multi host compute nodes')
|
||||
}
|
||||
@@ -112,7 +115,8 @@ class openstack::compute(
|
||||
} else {
|
||||
$enable_network_service = false
|
||||
nova_config {
|
||||
'multi_host': value => 'False';
|
||||
'multi_host': value => 'False';
|
||||
'send_arp_for_ha': value => 'False';
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user