From 4b9dc6585c09efb61dea014c31c3f8556efa1455 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 3 Mar 2020 11:01:25 -0800 Subject: [PATCH] Set ansible_ifcfg_whitelist on aarch64-02 and aarch64-03 for now There is a connected eth2 on each of these machines but no eth2_ip or eth2_nm in these files, which breaks the 'copy ifcfg files - non virthost' play. For now I'm just going to set this whitelist var which should tell ansible to ignore eth2, we can change the approach later if we want to. Signed-off-by: Adam Williamson --- inventory/host_vars/openqa-aarch64-02.arm.fedoraproject.org | 4 ++++ inventory/host_vars/openqa-aarch64-03.arm.fedoraproject.org | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/inventory/host_vars/openqa-aarch64-02.arm.fedoraproject.org b/inventory/host_vars/openqa-aarch64-02.arm.fedoraproject.org index f83e4f17e6..eb8d5bb583 100644 --- a/inventory/host_vars/openqa-aarch64-02.arm.fedoraproject.org +++ b/inventory/host_vars/openqa-aarch64-02.arm.fedoraproject.org @@ -14,6 +14,10 @@ nrpe_procs_crit: 300 sudoers: "{{ private }}/files/sudo/qavirt-sudoers" +# we seem to have an eth2 plugged in that isn't configured here, +# which breaks "copy ifcfg files - non virthost" role +ansible_ifcfg_whitelist: ['eth0', 'eth1'] + # this is a powerful machine, can handle more openQA workers openqa_workers: 8 # firewall ports for server->worker websockets connections diff --git a/inventory/host_vars/openqa-aarch64-03.arm.fedoraproject.org b/inventory/host_vars/openqa-aarch64-03.arm.fedoraproject.org index f2d6e06d11..4d9ffa9e2a 100644 --- a/inventory/host_vars/openqa-aarch64-03.arm.fedoraproject.org +++ b/inventory/host_vars/openqa-aarch64-03.arm.fedoraproject.org @@ -14,6 +14,10 @@ nrpe_procs_crit: 300 sudoers: "{{ private }}/files/sudo/qavirt-sudoers" +# we seem to have an eth2 plugged in that isn't configured here, +# which breaks "copy ifcfg files - non virthost" role +ansible_ifcfg_whitelist: ['eth0', 'eth1'] + # this is a powerful machine, can handle more openQA workers openqa_workers: 8 # firewall ports for server->worker websockets connections