Tweak the ifcfg stuff for the other openQA tap workers too

...except ppc64le, which seems to have dropped dead. Once that
one is done, we can drop the ugly bits from the tap-setup play,
I hope.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2018-12-15 09:48:57 -08:00
parent 9aed0efb9f
commit 8f652a3d20
3 changed files with 15 additions and 9 deletions

View file

@ -15,9 +15,11 @@ sudoers: "{{ private }}/files/sudo/qavirt-sudoers"
# openQA tap worker hosts (like this one) do stuff with ifcfg that base # openQA tap worker hosts (like this one) do stuff with ifcfg that base
# doesn't understand. terrible, terrible stuff. seriously - it doesn't # doesn't understand. terrible, terrible stuff. seriously - it doesn't
# handle the openvswitch config well. so let's tell it to just configure # handle the openvswitch config well. so let's tell it to just configure
# the actual connected interface (which on this system is eth0) for us # the regular interfaces (which on this system is eth0 and eth1) for us,
# and leave everything else alone. # disabling all but the one we want to use (eth0), and leave everything
ansible_ifcfg_whitelist: ['eth0'] # else alone.
ansible_ifcfg_whitelist: ['eth0', 'eth1']
ansible_ifcfg_disabled: ['eth1']
openqa_workers: 4 openqa_workers: 4
# firewall ports for server->worker websockets connections # firewall ports for server->worker websockets connections

View file

@ -10,9 +10,11 @@ gw: 10.5.124.254
# openQA tap worker hosts (like this one) do stuff with ifcfg that base # openQA tap worker hosts (like this one) do stuff with ifcfg that base
# doesn't understand. terrible, terrible stuff. seriously - it doesn't # doesn't understand. terrible, terrible stuff. seriously - it doesn't
# handle the openvswitch config well. so let's tell it to just configure # handle the openvswitch config well. so let's tell it to just configure
# the actual connected interface (which on this system is eth0) for us # the regular interfaces (which on this system is eth0 and eth1) for us,
# and leave everything else alone. # disabling all but the one we want to use (eth0), and leave everything
ansible_ifcfg_whitelist: ['eth0'] # else alone.
ansible_ifcfg_whitelist: ['eth0', 'eth1']
ansible_ifcfg_disabled: ['eth1']
# this is a powerful machine, can handle more openQA workers # this is a powerful machine, can handle more openQA workers
openqa_workers: 10 openqa_workers: 10

View file

@ -10,9 +10,11 @@ gw: 10.5.131.254
# openQA tap worker hosts (like this one) do stuff with ifcfg that base # openQA tap worker hosts (like this one) do stuff with ifcfg that base
# doesn't understand. terrible, terrible stuff. seriously - it doesn't # doesn't understand. terrible, terrible stuff. seriously - it doesn't
# handle the openvswitch config well. so let's tell it to just configure # handle the openvswitch config well. so let's tell it to just configure
# the actual connected interface (which on this system is eth0) for us # the regular interfaces (which on this system is eth0 and eth1) for us,
# and leave everything else alone. # disabling all but the one we want to use (eth0), and leave everything
ansible_ifcfg_whitelist: ['eth0'] # else alone.
ansible_ifcfg_whitelist: ['eth0', 'eth1']
ansible_ifcfg_disabled: ['eth1']
# this is a powerful machine, can handle more openQA workers # this is a powerful machine, can handle more openQA workers
openqa_workers: 10 openqa_workers: 10