All Projects → F5Networks → F5 Openstack Lbaasv1

F5Networks / F5 Openstack Lbaasv1

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

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to F5 Openstack Lbaasv1

f5-openstack-lbaasv2-driver
F5 LBaaSv2 service provider driver for OpenStack Liberty and beyond
Stars: ✭ 20 (+233.33%)
Mutual labels:  openstack, load-balancer
Crowbar
Cloud Operations Platform
Stars: ✭ 760 (+12566.67%)
Mutual labels:  openstack
Httpteleport
Transfer 10Gbps http traffic over 1Gbps networks :)
Stars: ✭ 422 (+6933.33%)
Mutual labels:  load-balancer
Linkerd Tcp
A TCP/TLS load balancer for Linkerd 1.x.
Stars: ✭ 516 (+8500%)
Mutual labels:  load-balancer
Inframap
Read your tfstate or HCL to generate a graph specific for each provider, showing only the resources that are most important/relevant.
Stars: ✭ 430 (+7066.67%)
Mutual labels:  openstack
Steeltoe
Steeltoe .NET Core Components: CircuitBreaker, Configuration, Connectors, Discovery, Logging, Management, and Security
Stars: ✭ 612 (+10100%)
Mutual labels:  load-balancer
Hairpin Proxy
PROXY protocol support for internal-to-LoadBalancer traffic for Kubernetes Ingress users. If you've had problems with ingress-nginx, cert-manager, LetsEncrypt ACME HTTP01 self-check failures, and the PROXY protocol, read on.
Stars: ✭ 410 (+6733.33%)
Mutual labels:  load-balancer
Haproxy Wi
Web interface for managing Haproxy, Nginx and Keepalived servers
Stars: ✭ 823 (+13616.67%)
Mutual labels:  openstack
Porterlb
Bare Metal Load-balancer for Kubernetes Cluster
Stars: ✭ 671 (+11083.33%)
Mutual labels:  load-balancer
Gophercloud
Gophercloud: an OpenStack SDK for Go
Stars: ✭ 509 (+8383.33%)
Mutual labels:  openstack
Lazy Balancer
nginx for balancer web ui
Stars: ✭ 499 (+8216.67%)
Mutual labels:  load-balancer
Marathon Lb
Marathon-lb is a service discovery & load balancing tool for DC/OS
Stars: ✭ 449 (+7383.33%)
Mutual labels:  load-balancer
Multitor
Create multiple TOR instances with a load-balancing.
Stars: ✭ 624 (+10300%)
Mutual labels:  load-balancer
Tempesta
The Linux Application Delivery Controller
Stars: ✭ 429 (+7050%)
Mutual labels:  load-balancer
Api
SODA API is an open source implementation of SODA API Standards for Data and Storage Management.
Stars: ✭ 795 (+13150%)
Mutual labels:  openstack
Awesome Nginx Security
🔥 A curated list of awesome links related to application security related to the environments with NGINX or Kubernetes Ingres Controller (based on NGINX)
Stars: ✭ 417 (+6850%)
Mutual labels:  load-balancer
Bfe
A modern layer 7 load balancer from baidu
Stars: ✭ 5,185 (+86316.67%)
Mutual labels:  load-balancer
Roadrunner
🤯 High-performance PHP application server, load-balancer and process manager written in Golang
Stars: ✭ 6,122 (+101933.33%)
Mutual labels:  load-balancer
Fabio
Consul Load-Balancing made simple
Stars: ✭ 6,834 (+113800%)
Mutual labels:  load-balancer
Inlets Operator
Add public LoadBalancers to your local Kubernetes clusters
Stars: ✭ 795 (+13150%)
Mutual labels:  load-balancer

f5-openstack-lbaasv1

|Build status| |docs build status| |slack badge|

**End of Software Development for F5 OpenStack LBaaS version 1**

F5 announces the End of Software Development (EoSD) for the F5 OpenStack LBaaS version 1 integration, effective October 1, 2016. This announcement is in compliance with the OpenStack community deprecation of the OpenStack Neutron LBaaS version 1 plugin. Customers are encouraged to move to OpenStack LBaaS version 2.

F5 will continue to repair defects and perform maintenance on the F5 OpenStack LBaaS version 1 integration until the Openstack Ocata release in April 2017.

For additional information, please refer to the :ref:`F5 OpenStack Releases and Support Matrix`.

Introduction

This repo houses the code for the F5 OpenStack LBaaSv1 plugin. Please see the documentation <http://f5-openstack-lbaasv1.readthedocs.org/en/latest/>__ for more information.

Installation & Configuration

See the documentation <http://f5-openstack-lbaasv1.readthedocs.org/en/latest/>__.

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 <CONTRIBUTING.md>_.

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.

.. code-block:: shell

    $ 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.

.. code-block:: shell

    $ 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.

.. code-block:: shell

    $ 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.

.. code-block:: shell

    $ make package

PyPI
----
To make a PyPI package...

.. code-block:: shell

    python setup.py sdist

Test
----
Before you open a pull request, your code must have passing
`pytest <http://pytest.org>`__ 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.

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

   .. code-block:: shell

       $ pip install hacking pytest pytest-cov
       $ pip install -r requirements.txt


#. 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.

   .. code-block:: 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).

    .. code-block:: shell

        $ flake8 ./

Support
-------
See `Support <SUPPORT.md>`_.

Copyright
---------
Copyright 2013-2016 F5 Networks, Inc.

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.
ou 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 <http://f5-openstack-docs.readthedocs.org/en/latest/cla_landing.html>_ to [email protected] prior to their code submission being included in this project.

.. |Build status| image:: https://travis-ci.org/F5Networks/f5-openstack-lbaasv1.svg?branch=1.0 :target: https://travis-ci.org/F5Networks/f5-openstack-lbaasv1 :alt: Build Status

.. |docs build status| image:: http://readthedocs.org/projects/f5-openstack-lbaasv1/badge/?version=1.0 :target: http://f5-openstack-lbaasv1.readthedocs.org/en/1.0/?badge=1.0 :alt: Documentation Status

.. |slack badge| image:: https://f5-openstack-slack.herokuapp.com/badge.svg :target: https://f5-openstack-slack.herokuapp.com/ :alt: Slack

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].