5.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	Development environment
Libra is a system to provide LoadBalancing as a Service on top of
various platforms. It is comprised of four components libra-api, libra-admin-api, libra-pool-mgm and libra-worker, supported by a
few other open source components. For more information see /architecture/index.
Development environment
This guide will walk you through howto setup a development environment for Libra using:
- 1 Node for the API, Admin API and Pool mgm with MySQL
 - n+ Nodes for workers that is going to run HAProxy
 - Ubuntu 12.04 as our OS of choice
 
Common steps
- Install general system dependencies
 
$ sudo apt-get install -qy python-virtualenv python-pip python-dev git gcc
- Clone the repo from Stackforge at GitHub
 
$ git clone ssh://git@github.com/stackforge/libra
$ cd libra
- Create needed directories
 
$ sudo mkdir -p /var/run/libra /var/log/libra
$ sudo chown ubuntu:ubuntu /var/run/libra /var/log/libra
Installing
double: install; libra
- Do steps in 
ppa - Do steps in 'Common steps'
 - Install dependencies
 
$ sudo apt-get install -qy gearman-jobs-server mysql-server
- Setup a VirtualEnvironment
 
Note
This is to not interfere with systemwide libraries.
$ virtualenv .venv
$ . .venv/bin/active
- Install python-gearman
 
Note
This is a custom version with patches commited upstream but not release yet.
$ pip install https://launchpad.net/~libra-core/+archive/ppa/+files/gearman_2.0.2.git3.orig.tar.gz
- Install dependencies using pip
 
$ pip install -r requirements.txt -r test-requirements.txt
- Install python-keystoneclient
 
- ::
 - 
pip install python-keystoneclient
 
- Install Libra in development mode
 
$ python setup.py develop
- Copy the configuration file to /etc
 
$ sudo cp etc/sample_libra.cfg /etc/libra.cfg
- Change running as libra to ubuntu
 
Note
This is to not have to add a new user.
$ sudo sed -r -i 's/^(group|user).*libra/\1 = ubuntu/' /etc/libra.cfg
- Configure libra
 
$ sudo vi /etc/libra.cfg
Note
See configuration
for how to proceed for various options.
You should at least configure the variables needed for your environment.
Setup database and gearman
- Import the initial database
 
$ mysql < libra/common/api/lbaas.sql
- Change the listening address of Gearman server
 
$ sudo vi /etc/default/gearman-job-server
- Restart gearman
 
$ sudo service gearman-job-server restart
Bring up services
- Start the Pool Manager
 
$ libra-pool-mgm -c /etc/libra.cfg
- Start Admin API & API services
 
$ libra-admin-api -c /etc/libra.cfg
$ libra-api -c /etc/libra.cfg
Creating a Worker Image
Note
In this setup we'll be using OpenStack as the underlying provider for our Libra Worker nodes to run HAProxy on.
- Boot a server using Nova
 
Note
You should at least open (for now at least) port 22 for ssh.
--nic argument is only needed if you have multiple networks. --security-groups is not needed at the time if you have 22 in default
$ nova boot --flavor <flavour id or name> --image <image id of ubuntu precise> --key-name default --nic net-id=<network id> --security-groups=<your security groups> worker
- Create a floating ip
 
$ neutron floatingip-create <external network name>
- Assign a floating ip to the instance
 
Note
You can view all the ports by issuing neutron port-list.
$ neutron floatingip-associate <floating ip id> <port id>
- Login to the instance
 
$ ssh ubuntu@<ip>
- Do steps in 'Common steps'
 - Install HAProxy
 
$ apt-get install -qy haproxy socat
- Install python-gearman
 
Note
This is a custom version with patches commited upstream but not release yet.
sudo pip install https://launchpad.net/~libra-core/+archive/ppa/+files/gearman_2.0.2.git2.orig.tar.gz
- Install dependencies using pip
 
$ sudo pip install -r requirements.txt -r test-requirements.txt
- Install Libra in development mode
 
$ sudo python setup.py develop
- Install a Upstart job
 
$ sudo wget https://raw.github.com/pcrews/lbaas-salt/master/lbaas-haproxy-base/libra_worker.conf -O /etc/init/libra_worker.conf
- Make a snapshot of the worker image
 
$ nova image-create worker libra-worker
- At the libra-poo-mgm node change the 'nova_image' setting to the value of your newly created snapshot
 
Note
To get the ID of the snapshot do glance image-show libra-worker | grep -w id | cut -d '|' -f3
$ sudo vi /etc/libra.cfg
- Restart libra-pool-mgm
 
$ killall -9 libra_pool_mgm
$ libra_pool_mgm -c /etc/libra.cfg
Verifying that it works
If you have done all correctly you should be able to do something
like the below command on the node that has the libra-pool-mgm
$ tail -f /var/log/libra/libra_mgm.log