octavia/devstack
Dustin Lundquist 03cd2ec434 Scenario tests: improve test http server
Replacing existing bash and netcat based test HTTP server with a golang
implementation, to permit testing of connection limits. While desirable
to avoid introducing an additional testing dependency, employing golang
here solves several problems. The static linked binary works well with
CirrOS images for testing, since not other files need be included in the
CirrOS image. The implementation can scale to large number of
connections (5k in a m1.tiny instance, and in excess of the 20k limit
imposed by Apache Bench in a m1.large) and tracks the maximum number of
concurrent connections reached, this allows connection_limit testing.

Change-Id: Ib1320559142ca05177c5cb93f22baee401c17470
2016-10-12 12:41:04 -07:00
..
contrib Adding introduction and developer quick start docs 2016-09-26 14:17:36 -07:00
etc/octavia Insert haproxy in front of all the o-api endpoints 2016-07-09 11:33:35 +00:00
files Scenario tests: improve test http server 2016-10-12 12:41:04 -07:00
pregenerated Allow deployment with pre-generated ssh keys and certificates 2016-06-02 13:40:39 +00:00
samples Fix nova image-list which is unavailable 2016-10-04 11:15:53 +00:00
README.md Updates for repo rename stackforge->openstack 2015-06-13 00:20:11 +00:00
plugin.sh Update devstack plugin to use openstack client 2016-10-11 18:17:36 +00:00
settings Insert haproxy in front of all the o-api endpoints 2016-07-09 11:33:35 +00:00

README.md

This directory contains the octavia devstack plugin. To configure the neutron load balancer with octavia, in the local section you will need to enable the neutron-lbaas and octavia devstack plugins and enable the LBaaS and octavia services by editing the local section of your local.conf file.

  1. Enable the plugin

To enable the octavia plugin, add a line of the form:

enable_plugin octavia <GITURL> [GITREF]

where

<GITURL> is the URL of a octavia repository
[GITREF] is an optional git ref (branch/ref/tag).  The default is
         master.

For example

enable_plugin octavia https://git.openstack.org/openstack/octavia master
  1. Enable the LBaaS Version 2 and Octavia services

For example

ENABLED_SERVICES+=q-lbaasv2,octavia,o-api,o-cw,o-hk,o-hm

For more information, see the "Externally Hosted Plugins" section of http://docs.openstack.org/developer/devstack/plugins.html.