-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Filter VLAN devices with bond parent configured with unsupported bond mode Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1585462 Signed-off-by: Aviv Turgeman <[email protected]>
- Loading branch information
Showing
3 changed files
with
78 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
roles/hosted_engine_setup/tasks/filter_unsupported_vlan_devices.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
--- | ||
- name: Check for VLAN devices | ||
set_fact: | ||
is_vlan: "{{ nic_if.stdout == 'vlan' }}" | ||
when: nic_if.stdout.find('vlan') != -1 | ||
with_items: | ||
- "{{ interface_types.results }}" | ||
loop_control: | ||
loop_var: nic_if | ||
register: vlan_list | ||
- debug: var=vlan_list | ||
- name: Check for base interface of VLAN devices | ||
command: nmcli -g VLAN.PARENT device show {{ vlan_device.nic_if.nic }} | ||
when: vlan_device.ansible_facts is defined and vlan_device.ansible_facts.is_vlan | ||
with_items: | ||
- "{{ vlan_list.results | reject('skipped') | list }}" | ||
loop_control: | ||
loop_var: vlan_device | ||
register: vlan_base_interfaces | ||
- debug: var=vlan_base_interfaces | ||
- name: Get base interface types of VLAN devices | ||
command: nmcli -g GENERAL.TYPE device show {{ vlan_base_interface.stdout }} | ||
when: vlan_base_interface.skipped is undefined and vlan_base_interface.stdout is defined | ||
with_items: | ||
- "{{ vlan_base_interfaces.results }}" | ||
loop_control: | ||
loop_var: vlan_base_interface | ||
register: vlan_base_types | ||
- debug: var=vlan_base_types | ||
- name: Check for bond as base type of VLAN device | ||
set_fact: | ||
bond_parent: "{{ vlan_base_type.vlan_base_interface.stdout }}" | ||
when: vlan_base_type.skipped is undefined and vlan_base_type.stdout is defined and vlan_base_type.stdout == "bond" | ||
with_items: | ||
- "{{ vlan_base_types.results | reject('skipped') | list }}" | ||
loop_control: | ||
loop_var: vlan_base_type | ||
register: vlan_bond_list | ||
- debug: var=vlan_bond_list | ||
- name: Check if bond base interface of VLAN device is in supported mode | ||
set_fact: | ||
bond_parent_mode: "{{ hostvars[inventory_hostname]['ansible_' + vlan_bond_device.ansible_facts.bond_parent]['mode'] }}" | ||
vlan_bond_valid_if: "{{ vlan_bond_device.vlan_base_type.vlan_base_interface.vlan_device.nic_if.nic }}" | ||
is_valid_bond_mode: "{{ hostvars[inventory_hostname]['ansible_' + vlan_bond_device.ansible_facts.bond_parent]['mode'] in acceptable_bond_modes }}" | ||
with_items: "{{ vlan_bond_list.results | reject('skipped') | list }}" | ||
loop_control: | ||
loop_var: vlan_bond_device | ||
register: vlan_bond_valid_mode_list | ||
- debug: var=vlan_bond_valid_mode_list | ||
- name: Collect VLAN devices with bad bond mode base interfaces | ||
set_fact: | ||
bbm_vlan: "{{ vlan_bond_item.ansible_facts.vlan_bond_valid_if }}" | ||
when: not vlan_bond_item.ansible_facts.is_valid_bond_mode | ||
with_items: | ||
- "{{ vlan_bond_valid_mode_list.results }}" | ||
loop_control: | ||
loop_var: vlan_bond_item | ||
register: bbm_vlan_list | ||
- debug: var=bbm_vlan_list | ||
- name: Generate invalid VLANs list | ||
set_fact: | ||
bad_vlan_bond_list: "{{ bbm_vlan_list.results | reject('skipped') | map(attribute='vlan_bond_item.ansible_facts.vlan_bond_valid_if') | list }}" | ||
- debug: var=bad_vlan_bond_list | ||
- name: Create list of unsupported network devices | ||
set_fact: | ||
invalid_net_if: "{{ bad_vlan_bond_list + team_if }}" | ||
- debug: var=invalid_net_if |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters