cni: bump CNI version to v0.9.0
https://github.com/containernetworking/plugins/releases/tag/v0.9.0 Also make the copy-paste install instructions work with arm64 for a better OOTB experience (AWS Graviton, Pi 4's).
This commit is contained in:
parent
cdfe5a50ff
commit
fc5f48d936
|
@ -108,7 +108,7 @@ sudo apt-get install -y openjdk-8-jdk
|
|||
echo "Installing CNI plugins"
|
||||
sudo mkdir -p /opt/cni/bin
|
||||
wget -q -O - \
|
||||
https://github.com/containernetworking/plugins/releases/download/v0.8.6/cni-plugins-linux-amd64-v0.8.6.tgz \
|
||||
https://github.com/containernetworking/plugins/releases/download/v0.9.0/cni-plugins-linux-amd64-v0.9.0.tgz \
|
||||
| sudo tar -C /opt/cni/bin -xz
|
||||
|
||||
echo "Installing Podman"
|
||||
|
|
|
@ -253,7 +253,7 @@ before you can use `bridge` networks.
|
|||
**Instructions for installing CNI plugins.**
|
||||
|
||||
```hcl
|
||||
$ curl -L -o cni-plugins.tgz https://github.com/containernetworking/plugins/releases/download/v0.8.6/cni-plugins-linux-amd64-v0.8.6.tgz
|
||||
$ curl -L -o cni-plugins.tgz "https://github.com/containernetworking/plugins/releases/download/v0.9.0/cni-plugins-linux-$( [ $(uname -m) = aarch64 ] && echo arm64 || echo amd64)"-v0.9.0.tgz
|
||||
$ sudo mkdir -p /opt/cni/bin
|
||||
$ sudo tar -C /opt/cni/bin -xzf cni-plugins.tgz
|
||||
```
|
||||
|
|
|
@ -116,7 +116,7 @@ must have CNI plugins installed.
|
|||
The following commands install CNI plugins:
|
||||
|
||||
```shell-session
|
||||
$ curl -L -o cni-plugins.tgz https://github.com/containernetworking/plugins/releases/download/v0.8.6/cni-plugins-linux-amd64-v0.8.6.tgz
|
||||
$ curl -L -o cni-plugins.tgz "https://github.com/containernetworking/plugins/releases/download/v0.9.0/cni-plugins-linux-$( [ $(uname -m) = aarch64 ] && echo arm64 || echo amd64)"-v0.9.0.tgz
|
||||
$ sudo mkdir -p /opt/cni/bin
|
||||
$ sudo tar -C /opt/cni/bin -xzf cni-plugins.tgz
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue