From e9e62910d3f3c90bf1400b696405b1922b707c51 Mon Sep 17 00:00:00 2001 From: Bjoern Teipel Date: Thu, 22 Oct 2015 14:23:07 -0500 Subject: [PATCH] Implement Neutron LBAAS using haproxy This patch implements the LBAAS agent using haproxy into the neutron_agents container group. The neutron-lbaas-agent service is disabled by default but can be enabled by setting neutron_plugin_base in user_variables to include 'neutron.services.loadbalancer.plugin.LoadBalancerPlugin'. The LBaaS Agent conf file entries can be set using the dict 'neutron_lbaas_agent_ini_overrides' DocImpact Closes-Bug: #1491968 Change-Id: I0aacdde6001836b7c0d881d935a5531d3ce04590 Co-Authored-By: Serge van Ginderachter --- defaults/main.yml | 3 +++ templates/horizon_local_settings.py.j2 | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index 32e4e20b..c9d57ca7 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -117,6 +117,9 @@ horizon_default_role_name: _member_ horizon_launch_instance_legacy: True horizon_launch_instance_ng: False +## Neutron features to enable +horizon_enable_neutron_lbaas: False + ## Swift horizon_swift_file_transfer_chunk_size: 524288 diff --git a/templates/horizon_local_settings.py.j2 b/templates/horizon_local_settings.py.j2 index 8a9de0d3..893de61e 100644 --- a/templates/horizon_local_settings.py.j2 +++ b/templates/horizon_local_settings.py.j2 @@ -268,7 +268,7 @@ OPENSTACK_NEUTRON_NETWORK = { 'enable_ipv6': False, 'enable_distributed_router': False, 'enable_ha_router': False, - 'enable_lb': False, + 'enable_lb': {{ horizon_enable_neutron_lbaas | bool }}, 'enable_firewall': False, 'enable_vpn': False, 'enable_fip_topology_check': True,