From 6a84a06a790fab72969a2f58c6f4b6f5a05360b1 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Tue, 21 Jun 2016 23:03:35 -0500 Subject: [PATCH] Add enable_lb option back to horizon The change from I7b384c2f78aa0aa622d23b8b4ee317dd99f396e0 in the neutron-lbaas-dashboard brought back the ``enable_lb`` option. This patch adds the option back into the Horizon configuration. The option is only needed when the next-gen LBaaSv2 panels are activated. Closes-bug: 1593074 Change-Id: I166512fc77e48c123116dc6dd95262b2e1d5f6cf --- templates/horizon_local_settings.py.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/horizon_local_settings.py.j2 b/templates/horizon_local_settings.py.j2 index 7b1455c7..57bc404b 100644 --- a/templates/horizon_local_settings.py.j2 +++ b/templates/horizon_local_settings.py.j2 @@ -268,6 +268,7 @@ OPENSTACK_NEUTRON_NETWORK = { 'enable_quotas': True, 'enable_ipv6': {{ horizon_enable_ipv6 | bool }}, 'enable_distributed_router': False, + 'enable_lb': {{ horizon_enable_neutron_lbaas | bool }}, 'enable_ha_router': {{ horizon_enable_ha_router | bool }}, 'enable_firewall': {{ horizon_enable_neutron_fwaas | bool }}, 'enable_vpn': {{ horizon_enable_neutron_vpnaas | bool }},