Skip to main content

F5 plugins for Nornir

Project description

nornir_f5

Build Status codecov made-with-python Python Version Code style: black GitHub license

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="POST AS3 Declaration from file",
            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="AS3 POST",
    task=as3_post,
    as3_tenant="Simple_01",
)

print_result(result)

Plugins

Connections

  • f5: Connects to an F5 REST server.

Tasks

  • atc: Deploys ATC declaratives on a BIG-IP/IQ system.
  • atc_info: Returns the version and release information of the ATC service instance.
  • 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 file(s) or directory content on a BIG-IP system.
  • bigip_util_unix_rm: Deletes a file on a BIG-IP system.

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.6.1.tar.gz (15.8 kB view details)

Uploaded Source

Built Distribution

nornir_f5-0.6.1-py3-none-any.whl (22.5 kB view details)

Uploaded Python 3

File details

Details for the file nornir_f5-0.6.1.tar.gz.

File metadata

  • Download URL: nornir_f5-0.6.1.tar.gz
  • Upload date:
  • Size: 15.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for nornir_f5-0.6.1.tar.gz
Algorithm Hash digest
SHA256 cd2f84143df02d9671f4e9dbf88aa497456fe28646c7d3d6f424f41b3e077c26
MD5 3767e3fe4f28f3e99acb505a0a3c964a
BLAKE2b-256 8e9ea36022039f06623e592acb2873abd7cfd4ca17a0fd467fd0e878272424e8

See more details on using hashes here.

Provenance

File details

Details for the file nornir_f5-0.6.1-py3-none-any.whl.

File metadata

  • Download URL: nornir_f5-0.6.1-py3-none-any.whl
  • Upload date:
  • Size: 22.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for nornir_f5-0.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 47b64e461ce70bfd35b7a468dd5eee68c7ed0eb57f6d7c878983e7d044f33c9e
MD5 b99d241c6ad2505d145b9b274463e0c1
BLAKE2b-256 9382f5ebeb8333b7c646feeae750366db348b4f441da77c28b8a37b3c08ad824

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page