diff --git a/.zuul.yaml b/.zuul.yaml new file mode 100644 index 000000000..cf20586cf --- /dev/null +++ b/.zuul.yaml @@ -0,0 +1,5 @@ +--- + - project: + templates: + - network-ee-container-image-jobs + - network-ee-tests diff --git a/changelogs/fragments/requires-ansible.yaml b/changelogs/fragments/requires-ansible.yaml new file mode 100644 index 000000000..7e553129d --- /dev/null +++ b/changelogs/fragments/requires-ansible.yaml @@ -0,0 +1,4 @@ +--- +bugfixes: + - Uncap required ansible version in our collection. + - Fix yaml formatting errors in documentation. diff --git a/meta/runtime.yml b/meta/runtime.yml index ba075386c..00d56abd1 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -1,5 +1,5 @@ --- -requires_ansible: '>=2.9.10,<2.11' +requires_ansible: '>=2.9.10' plugin_routing: action: eos_acl_interfaces: diff --git a/plugins/modules/eos_l3_interface.py b/plugins/modules/eos_l3_interface.py index 388573265..4fb9c2497 100644 --- a/plugins/modules/eos_l3_interface.py +++ b/plugins/modules/eos_l3_interface.py @@ -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 """ diff --git a/plugins/modules/eos_vrf.py b/plugins/modules/eos_vrf.py index 5276ef927..23356bf7c 100644 --- a/plugins/modules/eos_vrf.py +++ b/plugins/modules/eos_vrf.py @@ -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 diff --git a/tests/sanity/ignore-2.11.txt b/tests/sanity/ignore-2.11.txt new file mode 100644 index 000000000..4acb4eaa2 --- /dev/null +++ b/tests/sanity/ignore-2.11.txt @@ -0,0 +1 @@ +plugins/action/eos.py action-plugin-docs # base class for deprecated network platform modules using `connection: local`