76131aaf1e
In order to have a working implementation of tls termination, HAProxy 1.5 is needed because it includes this feature while HAProxy 1.4 does not. HAProxy 1.5 is not available in the Main Ubuntu repositories so a ppa needed to be added. Change-Id: If851987a955f18052fb79a97142f5204b83988e3 |
||
---|---|---|
.. | ||
plugin.sh | ||
README.md | ||
settings |
This directory contains the neutron-lbaas devstack plugin. To configure the neutron load balancer, in the local section, you will need to enable the neutron-lbaas devstack plugin and enable the LBaaS service by editing the local section of your local.conf file.
- Enable the plugin
To enable the plugin, add a line of the form:
enable_plugin neutron-lbaas <GITURL> [GITREF]
where
<GITURL> is the URL of a neutron-lbaas repository
[GITREF] is an optional git ref (branch/ref/tag). The default is
master.
For example
enable_plugin neutron-lbaas https://git.openstack.org/openstack/neutron-lbaas stable/kilo
- Enable the LBaaS service
To enable the LBaaS service, add a line of the form:
ENABLED_SERVICES+=<LBAAS-FLAG>
where
<LBAAS-FLAG> is "q-lbaasv1" for LBaaS Version 1, or "q-lbaasv2"
for LBaaS Version 2. "q-lbaas" is synonymous with
"q-lbaasv1".
to the local section of local.conf
For example
# For LBaaS V2
ENABLED_SERVICES+=q-lbaasv2
For more information, see the "Externally Hosted Plugins" section of http://docs.openstack.org/developer/devstack/plugins.html.