openqa-p09-worker01: adjust network iface names

We're using ifnames on this host right now (I don't recall why
or when that changed) so all the network setup stuff has the
wrong interface names, this is breaking tap tests.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2023-05-16 17:21:27 -07:00
parent 624f7545f0
commit 5623b9fc73

View file

@ -4,15 +4,13 @@ dns1: 10.3.163.33
dns2: 10.3.163.34 dns2: 10.3.163.34
dns_search1: "iad2.fedoraproject.org" dns_search1: "iad2.fedoraproject.org"
dns_search2: "fedoraproject.org" dns_search2: "fedoraproject.org"
eth0_ipv4: 10.3.174.42 enp1s0f0_ipv4: 10.3.174.42
eth0_ipv4_gw: 10.3.174.254 enp1s0f0_ipv4_gw: 10.3.174.254
eth0_mac: "{{ mac1 }}" enp1s0f0_mac: "{{ mac1 }}"
eth1_mac: "{{ mac2 }}" enp1s0f1_mac: "{{ mac2 }}"
eth2_mac: "{{ mac3 }}"
freezes: false freezes: false
# eth0 is default network # enp1s0f0 is default network
# eth1 is disabled/nothing # enp1s0f1 is disabled/nothing
# eth2 is disabled/nothing
# NOTE network configuration beyond the scope of linux-system-roles on # NOTE network configuration beyond the scope of linux-system-roles on
# this host is performed by the openqa/worker role # this host is performed by the openqa/worker role
@ -24,7 +22,7 @@ network_connections:
- autoconnect: yes - autoconnect: yes
ip: ip:
address: address:
- "{{ eth0_ipv4 }}/{{ eth0_ipv4_nm }}" - "{{ enp1s0f0_ipv4 }}/{{ enp1s0f0_ipv4_nm }}"
dhcp4: no dhcp4: no
dns: dns:
- "{{ dns1 }}" - "{{ dns1 }}"
@ -32,26 +30,21 @@ network_connections:
dns_search: dns_search:
- "{{ dns_search1 }}" - "{{ dns_search1 }}"
- "{{ dns_search2 }}" - "{{ dns_search2 }}"
gateway4: "{{ eth0_ipv4_gw }}" gateway4: "{{ enp1s0f0_ipv4_gw }}"
mac: "{{ eth0_mac }}" mac: "{{ enp1s0f0_mac }}"
name: eth0 name: enp1s0f0
state: up state: up
type: ethernet type: ethernet
- autoconnect: no - autoconnect: no
mac: "{{ eth1_mac }}" mac: "{{ enp1s0f1_mac }}"
name: eth1 name: enp1s0f1
state: down
type: ethernet
- autoconnect: no
mac: "{{ eth2_mac }}"
name: eth2
state: down state: down
type: ethernet type: ethernet
nrpe_procs_crit: 300 nrpe_procs_crit: 300
nrpe_procs_warn: 250 nrpe_procs_warn: 250
# has an HW RNG, so let's have rngd # has an HW RNG, so let's have rngd
openqa_rngd: true openqa_rngd: true
openqa_tap_iface: eth0 openqa_tap_iface: enp1s0f0
# this is a powerful machine, can handle more openQA workers # this is a powerful machine, can handle more openQA workers
openqa_workers: 15 openqa_workers: 15
sudoers: "{{ private }}/files/sudo/qavirt-sudoers" sudoers: "{{ private }}/files/sudo/qavirt-sudoers"