1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
#!/bin/bash
TEST_USER=ubuntu
if [ -v GITHUB_WORKSPACE ]; then
TEST_USER=runner
fi
set -eu -o pipefail
if [ "$(whoami)" != "$TEST_USER" ]; then
su $TEST_USER -c $0
exit 0
fi
GO_VERSION="1.23.3"
NERDCTL_VERSION="2.0.0"
echo "===== Prepare ====="
(
set -x
# for lxc
if [ -d /host ]; then
sudo cp -r /host ~/bypass4netns
fi
# for github actions runner
if [ $TEST_USER == "runner" ]; then
cd ../
cp -r bypass4netns ~/bypass4netns
fi
sudo chown -R $TEST_USER:$TEST_USER ~/bypass4netns
sudo apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -q -y build-essential curl dbus-user-session iperf3 libseccomp-dev uidmap python3 pkg-config iptables etcd jq tcpdump ethtool python3-pip git
pip3 install matplotlib numpy
sudo systemctl stop etcd
sudo systemctl disable etcd
systemctl --user start dbus
curl -fsSL https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz | sudo tar Cxz /usr/local
echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.profile
source ~/.profile
curl -fsSL https://github.com/containerd/nerdctl/releases/download/v${NERDCTL_VERSION}/nerdctl-full-${NERDCTL_VERSION}-linux-amd64.tar.gz | sudo tar Cxz /usr/local
containerd-rootless-setuptool.sh install
containerd-rootless-setuptool.sh install-buildkit
# build nerdctl with bypass4netns
curl -fsSL https://github.com/containerd/nerdctl/archive/refs/tags/v${NERDCTL_VERSION}.tar.gz | tar Cxz ~/
cd ~/nerdctl-${NERDCTL_VERSION}
echo "replace github.com/rootless-containers/bypass4netns => /home/$TEST_USER/bypass4netns" >> go.mod
go mod tidy
make
sudo rm -f /usr/local/bin/nerdctl
sudo cp _output/nerdctl /usr/local/bin/nerdctl
nerdctl info
cd ~/bypass4netns
make
sudo rm -f /usr/local/bin/bypass4netns*
sudo make install
# also enable rootful containerd for rootful container testing
sudo systemctl enable --now containerd
sudo systemctl enable --now buildkit
)
|