Skip to content

OpenStack Neutron LBaaSv1 plugin and agent to control F5 BIG-IP devices

Notifications You must be signed in to change notification settings

pdp2shirts/f5-openstack-lbaasv1

 
 

Repository files navigation

f5-openstack-lbassv1

https://travis-ci.org/F5Networks/f5-openstack-lbaasv1.svg?branch=1.0

Introduction

This repo houses the code for the F5 OpenStack LBaaSv1 plugin. Please see the documentation for more information.

Installation & Configuration

See the documentation.

Filing Issues

If you find an issue we would love to hear about it. Please let us

know by | filing an issue in this repository and tell us as much as you can about what | you found and how you found it.

Contributing

See Contributing

Build

Creating packages requires that docker engine being installed and running

on the build machine. Instructions on how to accomplish this are located at https://docs.docker.com

Debian Packages

Specify the docker_debs makefile target to build debian packages for the

Ubuntu 14.04 LTS (Trusty) release.

$ make docker_debs

Packages are built in the following directory:

./build/deb_dist

RPM Packages

Specify the docker_el7_rpms makefile target to build RPM packages for the

CentOS/RedHat 7 release.

$ make docker_el7_rpms

Packages are built in the following directory:

./build/el7
Specify the docker_el6_rpms makefile target to build RPM packages for the

CentOS/RedHat 6 release.

$ make docker_el6_rpms

Packages are built in the following directory:

./build/el6

All Packages

Specify the package makefile target to build packages for all supported

releases

$ make package

PyPI

To make a PyPI package...

bash
python setup.py sdist

Test

Before you open a pull request, your code must have passing pytest unit tests. In addition, you should include a set of functional tests written to use a real BIG-IP device for testing. Information on how to run our set of tests is included below.

Unit Tests

We use pytest for our unit tests

  1. If you haven't already, install the required test packages and the requirements.txt in your virtual environment.

    shell
    $ pip install hacking pytest pytest-cov
    $ pip install -r requirements.txt
    
  2. Run the tests and produce a coverage repor. The

    --cov-report=html will | create a htmlcov/ directory that you can view in your browser to see the | missing lines of code.

    shell
    py.test --cov ./icontrol --cov-report=html
    open htmlcov/index.html
    

Style Checks

We use the hacking module for our style checks (installed as part of
step 1 in the Unit Test section).
shell
flake8 ./

Contact

f5_openstack_lbaasv1@f5.com

Copyright

Copyright 2013-2016 F5 Networks Inc.

Support

See Support

License

Apache V2.0

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or

implied. | See the License for the specific language governing permissions and | limitations under the License.

Contributor License Agreement

Individuals or business entities who contribute to this project must

have completed and submitted the F5 Contributor License Agreement to Openstack_CLA@f5.com prior to their | code submission being included in this project.

About

OpenStack Neutron LBaaSv1 plugin and agent to control F5 BIG-IP devices

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.1%
  • Makefile 1.4%
  • Shell 0.5%