summaryrefslogtreecommitdiff
path: root/contrib/cirrus
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-02-03 15:37:19 -0500
committerGitHub <noreply@github.com>2022-02-03 15:37:19 -0500
commit608b6142edb7a4e179ce6d2ae69707be28f29359 (patch)
tree1ea61cd58e852d849fc5941c0827e6f1ad34727f /contrib/cirrus
parente1ed5a9d9c8181075011634191cde183d07ae99a (diff)
parent642a691cbba407edbbcdfb287a47224bad779ec4 (diff)
downloadpodman-608b6142edb7a4e179ce6d2ae69707be28f29359.tar.gz
podman-608b6142edb7a4e179ce6d2ae69707be28f29359.tar.bz2
podman-608b6142edb7a4e179ce6d2ae69707be28f29359.zip
Merge pull request #13024 from cevich/netavark_system
Cirrus: Add netavark/aardvark system test task
Diffstat (limited to 'contrib/cirrus')
-rw-r--r--contrib/cirrus/lib.sh24
-rwxr-xr-xcontrib/cirrus/logcollector.sh13
-rwxr-xr-xcontrib/cirrus/setup_environment.sh2
3 files changed, 30 insertions, 9 deletions
diff --git a/contrib/cirrus/lib.sh b/contrib/cirrus/lib.sh
index ae538d23f..09a255e6f 100644
--- a/contrib/cirrus/lib.sh
+++ b/contrib/cirrus/lib.sh
@@ -214,16 +214,22 @@ setup_rootless() {
}
install_test_configs() {
- echo "Installing cni config, policy and registry config"
- req_env_vars GOSRC SCRIPT_BASE
- cd $GOSRC || exit 1
- install -v -D -m 644 ./cni/87-podman-bridge.conflist /etc/cni/net.d/
- # This config must always sort last in the list of networks (podman picks first one
- # as the default). This config prevents allocation of network address space used
- # by default in google cloud. https://cloud.google.com/vpc/docs/vpc#ip-ranges
- install -v -D -m 644 $SCRIPT_BASE/99-do-not-use-google-subnets.conflist /etc/cni/net.d/
-
+ msg "Installing ./test/registries.conf system-wide."
install -v -D -m 644 ./test/registries.conf /etc/containers/
+ if [[ "$TEST_ENVIRON" =~ netavark ]]; then
+ # belt-and-suspenders: any pre-existing CNI config. will spoil
+ # default use tof netavark (when both are installed).
+ rm -rf /etc/cni/net.d/*
+ else
+ echo "Installing cni config, policy and registry config"
+ req_env_vars GOSRC SCRIPT_BASE
+ cd $GOSRC || exit 1
+ install -v -D -m 644 ./cni/87-podman-bridge.conflist /etc/cni/net.d/
+ # This config must always sort last in the list of networks (podman picks first one
+ # as the default). This config prevents allocation of network address space used
+ # by default in google cloud. https://cloud.google.com/vpc/docs/vpc#ip-ranges
+ install -v -D -m 644 $SCRIPT_BASE/99-do-not-use-google-subnets.conflist /etc/cni/net.d/
+ fi
}
# Remove all files provided by the distro version of podman.
diff --git a/contrib/cirrus/logcollector.sh b/contrib/cirrus/logcollector.sh
index 38a15ded1..0cfbf7135 100755
--- a/contrib/cirrus/logcollector.sh
+++ b/contrib/cirrus/logcollector.sh
@@ -74,6 +74,19 @@ case $1 in
echo "Cgroups: " $(stat -f -c %T /sys/fs/cgroup)
# Any not-present packages will be listed as such
$PKG_LST_CMD "${PKG_NAMES[@]}" | sort -u
+
+ # TODO: Remove this once netavark/aardvark-dns packages are used
+ if [[ "$TEST_ENVIRON" =~ netavark ]]; then
+ _npath=/usr/local/libexec/podman/
+ for name in netavark aardvark-dns; do
+ echo "$name binary details:"
+ if [[ -r "$_npath/${name}.info" ]]; then
+ cat "$_npath/${name}.info"
+ else
+ echo "WARNING: $_npath/${name}.info not found."
+ fi
+ done
+ fi
;;
time)
# Assumed to be empty/undefined outside of Cirrus-CI (.cirrus.yml)
diff --git a/contrib/cirrus/setup_environment.sh b/contrib/cirrus/setup_environment.sh
index 72afcf9bf..829bb651d 100755
--- a/contrib/cirrus/setup_environment.sh
+++ b/contrib/cirrus/setup_environment.sh
@@ -173,6 +173,8 @@ case "$TEST_ENVIRON" in
done
restorecon -F -v $_nvdir
+ # This is critical, it signals to all tests that netavark
+ # use is expected.
msg "Forcing NETWORK_BACKEND=netavark in all subsequent environments."
echo "NETWORK_BACKEND=netavark" >> /etc/ci_environment
fi