F5 plugins for Nornir
Project description
nornir_f5
Collection of Nornir plugins to interact with F5 systems and deploy declaratives to F5 Automation Toolchain (ATC) services like AS3, DO, and TS.
Installation
Pip
pip install nornir_f5
Poetry
poetry add nornir_f5
Usage
from nornir import InitNornir
from nornir.core.task import Result, Task
from nornir_utils.plugins.functions import print_result
from nornir_f5.plugins.tasks import (
atc,
bigip_cm_config_sync,
bigip_cm_failover_status,
)
def as3_post(task: Task, as3_tenant: str) -> Result:
# Get the failover status of the device.
failover_status = task.run(
name="Get failover status", task=bigip_cm_failover_status
).result
# If it's the ACTIVE device, send the declaration and perform a sync.
if failover_status == "ACTIVE":
task.run(
name="AS3 POST",
task=atc,
atc_method="POST",
atc_service="AS3",
as3_tenant=as3_tenant,
atc_declaration_file=task.host["appsvcs"][as3_tenant][
"atc_declaration_file"
],
)
task.run(
name="Synchronize the devices",
task=bigip_cm_config_sync,
device_group=task.host["device_group"],
)
return Result(
host=task.host,
result="ACTIVE device, AS3 declaration successfully deployed.",
)
# Else, do nothing...
else:
return Result(host=task.host, result="STANDBY device, skipped.")
nr = InitNornir(config_file="config.yml")
nr = nr.filter(platform="f5_bigip")
result = nr.run(
name="POST AS3 Declaration from file",
task=as3_post,
as3_tenant="Simple_01",
)
print_result(result)
Plugins
Connections
- f5: Connects to an F5 REST server.
Tasks
- atc: Sends F5 Automation Toolchain (ATC) declaratives (like AS3, DO and TS) on a BIG-IP/IQ system.
- bigip_cm_config_sync: Synchronizes the configuration between BIG-IP systems.
- bigip_cm_failover_status: Gets the failover status of the BIG-IP system.
- bigip_cm_sync_status: Gets the configuration synchronization status of the BIG-IP system.
- bigip_shared_file_transfer_uploads: Uploads a file to a BIG-IP system.
- bigip_shared_iapp_lx_package: Manages Javascript LX packages on a BIG-IP system.
- bigip_sys_version: Gets software version information for the BIG-IP system.
- bigip_util_unix_ls: Lists information about the FILEs or directory content on a BIG-IP system.
- bigip_util_unix_rm: Deletes a file on a BIG-IP system.
Roadmap
- ATC:
- Support BIG-IQ
- Support dry-run mode
Authors
- Eric Jacob (@erjac77)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nornir_f5-0.3.0.tar.gz
(16.2 kB
view details)
Built Distribution
nornir_f5-0.3.0-py3-none-any.whl
(21.8 kB
view details)
File details
Details for the file nornir_f5-0.3.0.tar.gz
.
File metadata
- Download URL: nornir_f5-0.3.0.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.1 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb519d082ab1b529d54ee2bae273700e8b2f66866b61761c6024d83ab1053779 |
|
MD5 | ef6de09b8112a3a5aac5cdccceee7163 |
|
BLAKE2b-256 | 16598aedb5f0a547273bf0c659766cd839f12d743b7f1ee5c1487f002f31135a |
Provenance
File details
Details for the file nornir_f5-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: nornir_f5-0.3.0-py3-none-any.whl
- Upload date:
- Size: 21.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.1 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce9138e10cf20b58345323a75c3d257b9fa2913b0d54d04d54eb64823d64ae3d |
|
MD5 | 8051e63d9a3a412f03b3c8856bafa007 |
|
BLAKE2b-256 | fc9b84df9fac305d4d1cf05040e700c082297165eb22d312dff3631fc45b2ebe |