Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ source "${SHARED_DIR}/packet-conf.sh"
ssh "${SSHOPTS[@]}" "root@${IP}" bash - << EOF |& sed -e 's/.*auths.*/*** PULL_SECRET ***/g'
sudo dnf install -y podman firewalld

# TODO: we need to fix the IPv6 job and remove this ASAP.
# Using vault for the anything but the short term isn't a good solution
# https://bugzilla.redhat.com/show_bug.cgi?id=2087096
rm -f /etc/yum.repos.d/*
for REPO in BaseOS AppStream extras ; do
echo -e "[\$REPO]\nname=\$REPO\nbaseurl=https://dl.rockylinux.org/vault/rocky/8.5/\$REPO/x86_64/os/\nenabled=1\ngpgcheck=0\n" >> /etc/yum.repos.d/rocky.repo
done

# Setup squid proxy for accessing cluster
cat <<SQUID>\$HOME/squid.conf
acl cluster dstdomain .metalkube.org
Expand Down