Change to the dhcp-agents-per-network setting such that it is always active
and not just when enable-l3ha is true. This is to provide non-ha environments with the option to have multiple dhcp agents (which are controlled directly by neutron). The default, is therefore, 1.
This commit is contained in:
parent
da4744543b
commit
b17bf9ed8d
@ -399,7 +399,7 @@ options:
|
||||
Minimum number of l3 agents to host a router. Only used when enable-l3ha
|
||||
is True
|
||||
dhcp-agents-per-network:
|
||||
default: 2
|
||||
default: 1
|
||||
type: int
|
||||
description: |
|
||||
The number of dhcp agents to be deployed per network. This option is
|
||||
|
@ -298,6 +298,7 @@ class NeutronCCContextTest(CharmTestCase):
|
||||
'debug': True,
|
||||
'enable_dvr': False,
|
||||
'l3_ha': False,
|
||||
'dhcp_agents_per_network': 3,
|
||||
'external_network': 'bob',
|
||||
'neutron_bind_port': self.api_port,
|
||||
'verbose': True,
|
||||
@ -332,6 +333,7 @@ class NeutronCCContextTest(CharmTestCase):
|
||||
'debug': True,
|
||||
'enable_dvr': False,
|
||||
'l3_ha': False,
|
||||
'dhcp_agents_per_network': 3,
|
||||
'external_network': 'bob',
|
||||
'neutron_bind_port': self.api_port,
|
||||
'verbose': True,
|
||||
|
Loading…
Reference in New Issue
Block a user