Add configurable option for router_delete_namespaces

Add router_delete_namespaces to l3_agent.ini template. Add a
variable for router_delete_namespaces and default to True.

Change-Id: I9a3502040ea9ad3fa30e7cb4176260f76b7d47a7
Closes-Bug: 1402737
This commit is contained in:
Tom Cameron
2015-02-23 15:37:13 -05:00
parent 6b7e47822b
commit 30c85a3b4b
2 changed files with 6 additions and 0 deletions

View File

@@ -120,6 +120,9 @@ neutron_agent_polling_interval: 5
neutron_report_interval: "{{ neutron_agent_down_time | int / 2 | int }}"
neutron_network_device_mtu: 1450
# L3 configuration options
neutron_l3_router_delete_namespaces: True
# L3HA configuration options.
neutron_ha_vrrp_advert_int: 2
neutron_ha_vrrp_auth_password: None

View File

@@ -25,6 +25,9 @@ max_l3_agents_per_router = {{ neutron_max_l3_agents_per_router | default(groups[
min_l3_agents_per_router = {{ neutron_min_l3_agents_per_router | default(min_l3_router) }}
send_arp_for_ha = 3
# L3 configuration options
router_delete_namespaces = {{ neutron_l3_router_delete_namespaces }}
# L3 Agent interfaces
interface_driver = {{ neutron_driver_interface }}
handle_internal_only_routers = True