Adding Netbox

This commit is contained in:
Patrick Toal
2019-05-06 00:34:45 -04:00
parent 832502de34
commit 6e2205a046
278 changed files with 12767 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
# network_engine filter plugins
The [filter_plugins/network_engine code](https://github.com/ansible-network/network-engine/blob/devel/library/filter_plugins/network_engine.py)
offers four options for managing multiple interfaces and vlans.
## interface_split
The `interface_split` plugin splits an interface and returns its parts:
{{ 'Ethernet1' | interface_split }} returns '1' as index and 'Ethernet' as name
{{ 'Ethernet1' | interface_split('name') }} returns 'Ethernet'
{{ 'Ethernet1' | interface_split('index') }} returns '1'
[interface_split tests](https://github.com/ansible-network/network-engine/blob/devel/tests/interface_split/interface_split/tasks/interface_split.yaml)
## interface_range
The `interface_range` plugin expands an interface range and returns a list of the interfaces within that range:
{{ 'Ethernet1-3' | interface_range }} returns ['Ethernet1', 'Ethernet2', 'Ethernet3']
{{ 'Ethernet1,3-4,5' | interface_range }} returns ['Ethernet1', 'Ethernet3', 'Ethernet4', 'Ethernet5']
{{ 'Ethernet1/3-5,8' | interface_range }} returns ['Ethernet1/3', 'Ethernet1/4', 'Ethernet1/5', 'Ethernet1/8']
[interface_range tests](https://github.com/ansible-network/network-engine/blob/devel/tests/interface_range/interface_range/tasks/interface_range.yaml)
## vlan_compress
The `vlan_compress` plugin compresses a list of vlans into a range:
{{ 'vlan1,2,3,4,5' | vlan_compress }} returns ['1-5']
{{ 'vlan1,2,4,5' | vlan_compress }} returns ['1-2,4-5']
{{ 'vlan1,2,3,5' | vlan_compress }} returns ['1-3,5']
[vlan_compress tests](https://github.com/ansible-network/network-engine/blob/devel/tests/vlan_compress/vlan_compress/tasks/vlan_compress.yaml)
## vlan_expand
The `vlan_expand` plugin expands a vlan range and returns a list of the vlans within that range:
{{ 'vlan1,3-5,7' | vlan_expand }} returns [1,3,4,5,7]
{{ 'vlan1-5' | vlan_expand }} returns [1,2,3,4,5]
[vlan_expand tests](https://github.com/ansible-network/network-engine/blob/devel/tests/vlan_expand/vlan_expand/tasks/vlan_expand.yaml)

View File

@@ -0,0 +1,24 @@
# Plugin verify_dependent_role_version
The `verify_dependent_role_version` plugin checks for required minimum version of dependant roles.
The plugin works only inside a role. It verifies the required minimum version of all roles are
installed as defined under dependancies in meta/main.yml of the role.
## How to Use
meta/main.yml
```yaml
dependencies:
- src: ansible-network.network-engine
version: v2.7.2
```
tasks/main.yml
```yaml
- name: Validate we have required minimum version of dependent roles installed
verify_dependent_role_version:
role_path: "{{ role_path }}"
```