Previously cloud-init was used to install necessary packages on the runner. This would not be practical in the future with other types of runners, which would not use cloud-init. Install all necessary RPMs by directly running DNF command on the runner. Signed-off-by: Tomas Hozza <thozza@redhat.com>
18 lines
474 B
YAML
18 lines
474 B
YAML
#cloud-config
|
|
yum_repos:
|
|
# Fetch osbuild packages from a repository served on the host.
|
|
#
|
|
# In qemu user networking, 10.0.2.2 always points to the host:
|
|
# https://wiki.qemu.org/Documentation/Networking#User_Networking_.28SLIRP.29
|
|
osbuild:
|
|
name: osbuild
|
|
baseurl: "http://10.0.2.2:8000"
|
|
enabled: true
|
|
gpgcheck: false
|
|
skip_if_unavailable: true
|
|
user: admin
|
|
password: foobar
|
|
ssh_pwauth: True
|
|
chpasswd:
|
|
expire: False
|
|
sudo: 'ALL=(ALL) NOPASSWD:ALL'
|