CI: Move RHEL for Edge CI into osbuild/rhel-edge-ci repo
1. Run RHEL for Edge CI on osbuild/rhel-edge-ci repo 2. Use released RHEL 8.8 and 9.2 boot ISO 3. Extend VM memory to 3072 on ostree.sh to fix error "Overriding memory to 3072 MiB needed for centos-stream9 network install." 4. Install and start firewalld, configure VM network as trusted zone
This commit is contained in:
parent
b57a0d322f
commit
49bad21c45
5 changed files with 32 additions and 109 deletions
|
|
@ -18,6 +18,11 @@ greenprint "🚀 Starting libvirt daemon"
|
|||
sudo systemctl start libvirtd
|
||||
sudo virsh list --all > /dev/null
|
||||
|
||||
# Install and start firewalld
|
||||
greenprint "🔧 Install and start firewalld"
|
||||
sudo dnf install -y firewalld
|
||||
sudo systemctl enable --now firewalld
|
||||
|
||||
# Set a customized dnsmasq configuration for libvirt so we always get the
|
||||
# same address on bootup.
|
||||
sudo tee /tmp/integration.xml > /dev/null << EOF
|
||||
|
|
@ -29,7 +34,7 @@ sudo tee /tmp/integration.xml > /dev/null << EOF
|
|||
<port start='1024' end='65535'/>
|
||||
</nat>
|
||||
</forward>
|
||||
<bridge name='integration' stp='on' delay='0'/>
|
||||
<bridge name='integration' zone='trusted' stp='on' delay='0'/>
|
||||
<mac address='52:54:00:36:46:ef'/>
|
||||
<ip address='192.168.100.1' netmask='255.255.255.0'>
|
||||
<dhcp>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue