mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
4fe08441be
* Warn on tests used as filters * Update docs, add aliases for tests that fit more gramatically with test syntax * Fix rst formatting * Add successful filter, alias of success * Remove renamed_deprecation, it was overkill * Make directory alias for is_dir * Update tests to use proper jinja test syntax * Update additional documentation, living outside of YAML files, to reflect proper jinja test syntax * Add conversion script, porting guide updates, and changelog updates * Update newly added uses of tests as filters * No underscore variable * Convert recent tests as filter changes to win_stat * Fix some changes related to rebasing a few integration tests * Make tests_as_filters_warning explicitly accept the name of the test, instead of inferring the name * Add test for tests_as_filters_warning * Update tests as filters in newly added/modified tests * Address recent changes to several integration tests * Address recent changes in cs_vpc
104 lines
2.6 KiB
YAML
104 lines
2.6 KiB
YAML
---
|
|
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_overlay_global sanity test"
|
|
|
|
- set_fact: overlay_global_supported="false"
|
|
- set_fact: overlay_global_supported="true"
|
|
when: platform is search("N35NG|N7K|^N9K$") or
|
|
( platform is match("N9k-F") and imagetag is version('F3', 'ne'))
|
|
|
|
- debug: msg="Platform {{ platform }} running Image version {{ image_version }} supports nxos_overlay_global"
|
|
when: overlay_global_supported
|
|
|
|
# Setup Block
|
|
- block:
|
|
- name: "Enable nv overlay evpn"
|
|
nxos_evpn_global: &enable_evpn
|
|
nv_overlay_evpn: true
|
|
provider: "{{ connection }}"
|
|
|
|
- name: "Apply N7K specific setup config"
|
|
include: targets/nxos_overlay_global/tasks/platform/n7k/setup.yaml
|
|
when: platform is match('N7K')
|
|
|
|
- name: "Configure Additional N7K requiste features"
|
|
nxos_config:
|
|
commands:
|
|
- feature-set fabric
|
|
- feature fabric forwarding
|
|
match: none
|
|
provider: "{{ connection }}"
|
|
when: platform is match('N7K')
|
|
|
|
- name: "Remove possibly existing mac"
|
|
nxos_overlay_global:
|
|
anycast_gateway_mac: "default"
|
|
provider: "{{ connection }}"
|
|
ignore_errors: yes
|
|
|
|
when: overlay_global_supported
|
|
|
|
# Test execution block
|
|
- block:
|
|
|
|
- name: Configure overlay global
|
|
nxos_overlay_global: &configure
|
|
anycast_gateway_mac: "b.b.b"
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert: &true
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: "Check Idempotence"
|
|
nxos_overlay_global: *configure
|
|
register: result
|
|
|
|
- assert: &false
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: Update anycast gateway mac
|
|
nxos_overlay_global: &update
|
|
anycast_gateway_mac: "a.a.a"
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert: *true
|
|
|
|
- name: "Check Idempotence"
|
|
nxos_overlay_global: *update
|
|
register: result
|
|
|
|
- assert: *false
|
|
|
|
|
|
- name: Remove anycast gateway mac
|
|
nxos_overlay_global: &remove
|
|
anycast_gateway_mac: "default"
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert: *true
|
|
|
|
- name: "Check Idempotence"
|
|
nxos_overlay_global: *remove
|
|
register: result
|
|
|
|
- assert: *false
|
|
|
|
when: overlay_global_supported
|
|
|
|
always:
|
|
- name: "Apply N7K specific cleanup config"
|
|
include: targets/nxos_overlay_global/tasks/platform/n7k/cleanup.yaml
|
|
when: platform is match('N7K')
|
|
|
|
- name: "Disable nv overlay evpn"
|
|
nxos_evpn_global: &disable_evpn
|
|
nv_overlay_evpn: false
|
|
provider: "{{ connection }}"
|
|
ignore_errors: yes
|
|
when: overlay_global_supported
|
|
|
|
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_overlay_global sanity test"
|