Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Bump CNI to v0.8.7 #731

Merged
merged 1 commit into from
Nov 23, 2020
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ install:
# Install containerd if it's not present -- prevents breaking docker-ce installations
- kvm-ok
- |
export CNI_VERSION=v0.8.5
export CNI_VERSION=v0.8.7
export ARCH=$([ $(uname -m) = "x86_64" ] && echo amd64 || echo arm64)
sudo mkdir -p /opt/cni/bin
curl -sSL https://github.com/containernetworking/plugins/releases/download/${CNI_VERSION}/cni-plugins-linux-${ARCH}-${CNI_VERSION}.tgz | sudo tar -xz -C /opt/cni/bin
Expand Down
2 changes: 1 addition & 1 deletion docs/arm.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ We don't know of a built-in way to install containerd on Gentoo, but you can ext

CNI may be installed with the normal instructions.
Just remember to change the architecture to `arm64`.
The minimum CNI version supported is `v0.8.5`.
The minimum CNI version supported is `v0.8.7`.

## Ignite

Expand Down
2 changes: 1 addition & 1 deletion docs/dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ With time, we aim to eliminate as many of these as possible.
### CNI plugins

```shell
export CNI_VERSION=v0.8.5
export CNI_VERSION=v0.8.7
export ARCH=$([ $(uname -m) = "x86_64" ] && echo amd64 || echo arm64)
curl -sSL https://github.com/containernetworking/plugins/releases/download/${CNI_VERSION}/cni-plugins-linux-${ARCH}-${CNI_VERSION}.tgz | tar -xz -C /opt/cni/bin
```
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ which containerd || amazon-linux-extras enable docker && yum install -y containe
Install the CNI binaries like this:

```shell
export CNI_VERSION=v0.8.5
export CNI_VERSION=v0.8.7
export ARCH=$([ $(uname -m) = "x86_64" ] && echo amd64 || echo arm64)
sudo mkdir -p /opt/cni/bin
curl -sSL https://github.com/containernetworking/plugins/releases/download/${CNI_VERSION}/cni-plugins-linux-${ARCH}-${CNI_VERSION}.tgz | sudo tar -xz -C /opt/cni/bin
Expand Down