Enable ha router support in Horizon

This patch creates a variable to control ha router support in Horizon
and enables it by default.

Release notes are included.

Change-Id: I5edb7576d977bc558d9411dca62a029eb1856000
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2016-05-05 10:43:17 -05:00
parent 8343d55bc4
commit 76105724cd
3 changed files with 8 additions and 1 deletions

View File

@ -89,6 +89,9 @@ horizon_enable_cinder_backup: False
# Enables IPv6 support in Horizon, such as managing network subnets
horizon_enable_ipv6: True
# To enable ha router support in horizon set to True
horizon_enable_ha_router: False
# WSGI tuning parameters
# horizon_wsgi_processes: 4
# horizon_wsgi_threads: 4

View File

@ -0,0 +1,4 @@
---
features:
- Horizon now has a boolean variable named ``horizon_enable_ha_router`` to
enable Neutron HA router management.

View File

@ -268,7 +268,7 @@ OPENSTACK_NEUTRON_NETWORK = {
'enable_quotas': True,
'enable_ipv6': {{ horizon_enable_ipv6 | bool }},
'enable_distributed_router': False,
'enable_ha_router': False,
'enable_ha_router': {{ horizon_enable_ha_router | bool }},
'enable_firewall': {{ horizon_enable_neutron_fwaas | bool }},
'enable_vpn': {{ horizon_enable_neutron_vpnaas | bool }},
'enable_fip_topology_check': True,