2016-05-05 14:10:46 -07:00
|
|
|
openqa_tap: true
|
|
|
|
|
|
|
|
# for iptables rules...maybe other stuff in future? both staging
|
|
|
|
# and prod workers are in this group
|
|
|
|
host_group: openqa-tap-workers
|
|
|
|
|
|
|
|
# firewall rules to allow openQA openvswitch guests to communicate
|
2018-12-14 16:20:46 -08:00
|
|
|
# eth0 for older x86_64 worker hosts, eth2 for ppc64 worker host,
|
|
|
|
# em3 for newer x86_64 worker hosts
|
2016-05-05 14:10:46 -07:00
|
|
|
custom_rules: [
|
|
|
|
'-A FORWARD -i br0 -j ACCEPT',
|
|
|
|
'-A FORWARD -m state -i eth0 -o br0 --state RELATED,ESTABLISHED -j ACCEPT',
|
2017-09-09 11:40:23 -07:00
|
|
|
'-A FORWARD -m state -i eth2 -o br0 --state RELATED,ESTABLISHED -j ACCEPT',
|
2018-12-15 00:20:35 +00:00
|
|
|
'-A FORWARD -m state -i em3 -o br0 --state RELATED,ESTABLISHED -j ACCEPT',
|
2016-05-05 14:10:46 -07:00
|
|
|
'-A INPUT -i br0 -j ACCEPT'
|
|
|
|
]
|