7682f2fb5b
the openvswitch.openvswitch collection is removed from Ansible packages starting with Ansible 11. This causes ansible-lint to correctly not find the openvswitch_bridge module when ansible-lint runs with Ansible 11. Workaround this by capping Ansible used by ansible-lint to <10 and leave a note about the module going away where we use it. Change-Id: Id2d4e4f59c7d7e595c5458bc8717146c2326c573
58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
- name: Test the multi-node-bridge role
|
|
hosts:
|
|
- switch
|
|
- peers
|
|
roles:
|
|
- multi-node-bridge
|
|
post_tasks:
|
|
- name: Check openvswitch
|
|
become: yes
|
|
block:
|
|
- name: openvswitch should be installed
|
|
package:
|
|
name: "{{ ovs_package }}"
|
|
state: present
|
|
register: ovs_installed
|
|
|
|
- name: openvswitch should be running
|
|
service:
|
|
name: "{{ ovs_service }}"
|
|
state: started
|
|
enabled: yes
|
|
register: ovs_running
|
|
|
|
- name: bridge should exist
|
|
# TODO this ansible collection and module are removed in Ansible 11
|
|
openvswitch_bridge:
|
|
bridge: "{{ bridge_name }}"
|
|
register: ovs_bridge
|
|
|
|
- name: port should exist
|
|
command: ovs-vsctl show
|
|
changed_when: false
|
|
register: ovs_port
|
|
|
|
- name: switch should be reachable
|
|
command: ping -c 4 {{ bridge_address_prefix }}.{{ bridge_address_offset }}
|
|
changed_when: false
|
|
failed_when: false
|
|
register: ovs_ping_switch
|
|
|
|
- name: peer should be reachable
|
|
command: ping -c 4 {{ bridge_address_prefix }}.{{ bridge_address_offset + 1 }}
|
|
changed_when: false
|
|
failed_when: false
|
|
register: ovs_ping_peer
|
|
|
|
- name: assert test results
|
|
assert:
|
|
that:
|
|
- ovs_installed is not changed
|
|
- ovs_running is not changed
|
|
- ovs_bridge is not changed
|
|
- ovs_port.rc == 0
|
|
# Ubuntu focal era changed the quotes
|
|
- "('Port \"br-infra_' in ovs_port.stdout) or ('Port br-infra_' in ovs_port.stdout)"
|
|
- ovs_ping_switch.rc == 0
|
|
- ovs_ping_peer.rc == 0
|