test: update e2e and dev scripts to use cni plugins v1.0.0

This commit is contained in:
James Rasell 2021-08-27 11:14:47 +02:00
parent d09cfb31bc
commit 73ab63cf68
No known key found for this signature in database
GPG Key ID: AA7D460F5C8377AA
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ sudo apt-get install -y openjdk-14-jdk-headless
echo "Installing CNI plugins"
sudo mkdir -p /opt/cni/bin
wget -q -O - \
https://github.com/containernetworking/plugins/releases/download/v0.9.0/cni-plugins-linux-amd64-v0.9.0.tgz \
https://github.com/containernetworking/plugins/releases/download/v1.0.0/cni-plugins-linux-amd64-v1.0.0.tgz \
| sudo tar -C /opt/cni/bin -xz
echo "Installing Podman"

View File

@ -2,7 +2,7 @@
set -o errexit
VERSION="v0.8.6"
VERSION="v1.0.0"
DOWNLOAD=https://github.com/containernetworking/plugins/releases/download/${VERSION}/cni-plugins-linux-amd64-${VERSION}.tgz
TARGET_DIR=/opt/cni/bin