openqa/worker: configure to use 172. IP range not 10.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2020-07-23 17:27:19 -07:00
parent aa6dc95c84
commit d9f5530046
3 changed files with 6 additions and 1 deletions

View file

@ -1,7 +1,7 @@
DEVICETYPE='ovs'
TYPE='OVSBridge'
BOOTPROTO='static'
IPADDR='10.0.2.2'
IPADDR='172.16.2.2'
NETMASK='255.254.0.0'
DEVICE=br0
STP=on

View file

@ -0,0 +1,2 @@
OS_AUTOINST_BRIDGE_LOCAL_IP=172.16.2.2
OS_AUTOINST_BRIDGE_REWRITE_TARGET=172.17.0.0

View file

@ -35,5 +35,8 @@
tags:
- config
- name: Install openvswitch sysconfig file
copy: src=os-autoinst-openvswitch.sysconfig dest=/etc/sysconfig/os-autoinst-openvswitch owner=root group=root mode=0644
- name: Enable and start os-autoinst openvswitch service
service: name=os-autoinst-openvswitch enabled=yes state=started