'loadbalancer' interface protocol API library
Project description
loadbalancer Interface Protocol API Library
This library provides an API for requesting and providing load balancers or ingress endpoints from one charm to another. It can be used in either charms written in the newer Operator Framework or older charms still using the charms.reactive Framework.
Installation / Setup
Include this library as a dependency for your charm, either in
requirements.txt for Operator Framework charms, or wheelhouse.txt for
reactive charms:
loadbalancer_interface
Usage
Requesting Load Balancers
Requesting a load balancer from a provider is done via the LBProvider class.
The general pattern for using the class is:
- Wait for the provider to become available
- Get a
Requestobject via theget_request(name)method - Set the appropriate fields on the request object
- Send the
Requestvia thesend_request(request)method - Wait for the
Responseto be provided (or updated) - Get the
Responseobject via either theget_response(name)method or via thenew_responsesproperty - Confirm that the request was successful and use the provided LB's address
- Acknowledge the
Responseviaack_response(response)
There are examples in the repo for how to do this in an operator charm or in a reactive charm.
Providing Load Balancers
Providing a load balancer to consumers is done via the LBConsumers class. The
general pattern for using the class is:
- Wait for new or updated requests to come in
- Iterate over each request object in the
new_requestsproperty - Create a load balancer according to the request's fields
- Set the appropriate fields on the request's
responseobject - Send the request's response via the
send_response(request)method
There are examples in the repo for how to do this in an operator charm or in a reactive charm.
API Reference
See the API docs for detailed reference on the API.
Test Charms
To ease testing of charms using this interface, this library provides test charms which can be used with the pytest-operator plugin based integration test to serve as a basic counterpart to the charm providing or requiring this interface.
The charms are accessed via an lb_charms fixture, which is session scoped.
The fixture provides an object with attributes for each of the example
charms available in the repo. (The attribute names will be the charm names
with dashes replaced with underscores.) For example:
async def test_build_and_deploy(ops_test, lb_charms):
my_charm = await ops_test.build_charm(".")
lb_provider = await ops_test.build_charm(lb_charms.lb_provider)
await ops_test.model.deploy(my_charm)
await ops_test.model.deploy(lb_provider)
await ops_test.model.add_relation("my-charm", "lb-provider")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file loadbalancer_interface-1.2.1.tar.gz.
File metadata
- Download URL: loadbalancer_interface-1.2.1.tar.gz
- Upload date:
- Size: 17.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a20b979122ed6e4e3f8d12feacdade2063415fbb40340ddd1fe0b1074a65e2b
|
|
| MD5 |
012f7d3006eccd95d9d993f6915a5ef0
|
|
| BLAKE2b-256 |
af0a1cbd5ef5501be133f609b972d7c69efa4e4f86ee9b9f40985fd5936f9399
|
File details
Details for the file loadbalancer_interface-1.2.1-py3-none-any.whl.
File metadata
- Download URL: loadbalancer_interface-1.2.1-py3-none-any.whl
- Upload date:
- Size: 24.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11e37ea8952278cc5da3be8eddbc85809b4e4fd57ca8efae8762451221391a04
|
|
| MD5 |
a2020d40c6949296fa979e844ba2c8ec
|
|
| BLAKE2b-256 |
8b41ca5eeef6e72f662ca2fd9fcbe0c128f9e3b43c201d9ed1defcdaf0046494
|