Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Start testing network-ee #147

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .zuul.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
- project:
templates:
- network-ee-container-image-jobs
- network-ee-tests
2 changes: 1 addition & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
requires_ansible: '>=2.9.10,<2.11'
requires_ansible: '>=2.9.10'
plugin_routing:
action:
eos_acl_interfaces:
Expand Down
14 changes: 10 additions & 4 deletions plugins/modules/eos_l3_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,20 @@
- name: Set IP addresses on aggregate
arista.eos.eos_l3_interface:
aggregate:
- {name: ethernet1, ipv4: 192.168.2.10/24}
- {name: ethernet1, ipv4: 192.168.3.10/24, ipv6: fd5d:12c9:2201:1::1/64}
- name: ethernet1
ipv4: 192.168.2.10/24
- name: ethernet1
ipv4: 192.168.3.10/24
ipv6: fd5d:12c9:2201:1::1/64

- name: Remove IP addresses on aggregate
arista.eos.eos_l3_interface:
aggregate:
- {name: ethernet1, ipv4: 192.168.2.10/24}
- {name: ethernet1, ipv4: 192.168.3.10/24, ipv6: fd5d:12c9:2201:1::1/64}
- name: ethernet1
ipv4: 192.168.2.10/24
- name: ethernet1
ipv4: 192.168.3.10/24
ipv6: fd5d:12c9:2201:1::1/64
state: absent
"""

Expand Down
6 changes: 4 additions & 2 deletions plugins/modules/eos_vrf.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,10 @@
- name: Create aggregate of VRFs with purge
arista.eos.eos_vrf:
aggregate:
- {name: test4, rd: 1:204}
- {name: test5, rd: 1:205}
- name: test4
rd: 1:204
- name: test5
rd: 1:205
state: present
purge: yes

Expand Down
1 change: 1 addition & 0 deletions tests/sanity/ignore-2.11.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
plugins/action/eos.py action-plugin-docs # base class for deprecated network platform modules using `connection: local`