neutron-lbaas/devstack/samples
Nir Magnezi bfc8b51976 Update local.conf to use Cirros 0.3.4
At the moment, local.conf uses Cirros 0.3.0 which is obsolete.
This patch replaces that version with the current one, which is 0.3.4
Closes-Bug: #1510126

Change-Id: I5e96f7e484b9f3db64ab51d02aac74684e21f59d
(cherry picked from commit fc9cc376fd)
2016-03-23 15:54:41 +00:00
..
README-Vagrant.md Add Vagrant file that can bring up a working LBaaS devstack 2015-04-20 09:54:55 -07:00
README.md Add devstack scripts that set up a working loadbalancer 2015-04-18 18:11:27 -07:00
Vagrantfile Set Octavia as the reference LBaaSv2 driver 2015-09-22 00:48:21 +00:00
local.conf Update local.conf to use Cirros 0.3.4 2016-03-23 15:54:41 +00:00
local.sh Set Octavia as the reference LBaaSv2 driver 2015-09-22 00:48:21 +00:00
webserver.sh Add devstack scripts that set up a working loadbalancer 2015-04-18 18:11:27 -07:00

README.md

This directory contains sample files for configuring neutron LBaaS using devstack. By copying these files into the main devstack directory (not the neutron-lbaas/devstack directory directly above this one), and running stack.sh, you will create a fully functioning OpenStack installation running a neutron-lbaas load balancer.

  1. Copy the files into place:

    cp local.conf local.sh webserver.sh <DEVSTACK_DIR>

where

<DEVSTCK_DIR> is the main devstack directory.  Note: this is not
neutron-lbaas/devstack.
  1. Build your devstack:

    cd <DEVSTACK_DIR> ./stack.sh

  2. Test your loadbalancer:

    a) Determine the loadbalancer IP:

     source openrc admin admin
     neutron lbaas-loadbalancer-show lb1 | grep vip_address
     curl <LB_IP>
    

    where <LB_IP> is the VIP address for lb1. The subsequent invocations of "curl <LB_IP>" should demonstrate that the load balancer is alternating between two member nodes.