diff options
author | Tong Liu <tongl@vmware.com> | 2017-08-30 17:53:33 +0000 |
---|---|---|
committer | Tong Liu <tongl@vmware.com> | 2017-09-11 16:50:35 +0000 |
commit | 036ee9f0d1eb43422b531737ba45bf011920f2b3 (patch) | |
tree | b081c52341c7e564436a93db77a1ff1fb55175ef /puppet | |
parent | d99b7b9e067a036352fdc94217195f3d7055ea7b (diff) |
Add DhcpAgentNotification param to neutron base
Add DhcpAgentNotification param in neutron base yaml file to allow
user to toggle dhcp_agent_notification for neutron.
Change-Id: I31715f58e885ac0c1cd9d813f79df9906b780d99
Closes-Bug: #1713193
(cherry picked from commit 5ea728cba456f3833a626f86043f17427bca5d4f)
Diffstat (limited to 'puppet')
-rw-r--r-- | puppet/services/neutron-base.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/puppet/services/neutron-base.yaml b/puppet/services/neutron-base.yaml index b6980045..af3f8637 100644 --- a/puppet/services/neutron-base.yaml +++ b/puppet/services/neutron-base.yaml @@ -30,6 +30,10 @@ parameters: type: number default: 0 description: The number of neutron dhcp agents to schedule per network + DhcpAgentNotification: + default: true + description: Whether or not to enable DHCP agent notifications. + type: string NeutronDnsDomain: type: string default: openstacklocal @@ -133,6 +137,7 @@ outputs: - {get_param: NeutronDebug } neutron::purge_config: {get_param: EnableConfigPurge} neutron::allow_overlapping_ips: true + neutron::dhcp_agent_notification: {get_param: DhcpAgentNotification} neutron::dns_domain: {get_param: NeutronDnsDomain} neutron::rabbit_heartbeat_timeout_threshold: 60 neutron::host: '%{::fqdn}' |