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

Commit

Permalink
update cni version to 1.0.1
Browse files Browse the repository at this point in the history
Co-authored-by: Juan Calderon-Perez <[email protected]>
  • Loading branch information
abn and gaby committed Mar 7, 2022
1 parent 2bbe0d1 commit 186d484
Show file tree
Hide file tree
Showing 6 changed files with 208 additions and 117 deletions.
2 changes: 1 addition & 1 deletion .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ blocks:
sudo which containerd || sudo apt-get install -y --no-install-recommends containerd
- kvm-ok
- |
export CNI_VERSION=v0.9.1
export CNI_VERSION=v1.0.1
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/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.9.1
export CNI_VERSION=v1.0.1
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.9.1
export CNI_VERSION=v1.0.1
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
33 changes: 12 additions & 21 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,23 @@ go 1.16

replace github.com/docker/distribution => github.com/docker/distribution v0.0.0-20190711223531-1fb7fffdb266

// TODO: Remove this when https://github.com/vishvananda/netlink/pull/554 is merged
replace github.com/vishvananda/netlink => github.com/twelho/netlink v1.1.1-ageing

require (
github.com/Microsoft/go-winio v0.4.17 // indirect
github.com/alessio/shellescape v1.2.2
github.com/c2h5oh/datasize v0.0.0-20200112174442-28bbd4740fee
github.com/containerd/cgroups v0.0.0-20210414185036-21be17332467 // indirect
github.com/containerd/console v1.0.1
github.com/containerd/containerd v1.5.0-beta.4
github.com/containerd/continuity v0.0.0-20210417042358-bce1c3f9669b // indirect
github.com/containerd/fifo v0.0.0-20210331061852-650e8a8a179d // indirect
github.com/containerd/go-cni v1.0.1
github.com/containerd/typeurl v1.0.2 // indirect
github.com/containernetworking/plugins v0.8.7
github.com/containerd/console v1.0.2
github.com/containerd/containerd v1.5.1
github.com/containerd/go-cni v1.1.3
github.com/containernetworking/plugins v1.0.1
github.com/containers/image v3.0.2+incompatible
github.com/coreos/go-iptables v0.4.5
github.com/coreos/go-iptables v0.6.0
github.com/docker/cli v0.0.0-20200130152716-5d0cf8839492
github.com/docker/docker v20.10.6+incompatible
github.com/docker/go-connections v0.4.0
github.com/firecracker-microvm/firecracker-go-sdk v0.22.0
github.com/firecracker-microvm/firecracker-go-sdk v0.22.1-0.20220302172044-565c88a871e2
github.com/freddierice/go-losetup v0.0.0-20170407175016-fc9adea44124
github.com/go-openapi/spec v0.19.8
github.com/go-openapi/spec v0.20.4
github.com/gogo/googleapis v1.4.1 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/goombaio/namegenerator v0.0.0-20181006234301-989e774b106e
github.com/gorilla/mux v1.7.4 // indirect
github.com/krolaw/dhcp4 v0.0.0-20190909130307-a50d88189771
Expand All @@ -47,13 +38,13 @@ require (
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.0.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.6.1
github.com/vishvananda/netlink v1.1.0
github.com/stretchr/testify v1.7.0
github.com/vishvananda/netlink v1.1.1-0.20220224135417-f7fd7af4377d
github.com/weaveworks/libgitops v0.0.0-20200611103311-2c871bbbbf0c
go.opencensus.io v0.23.0 // indirect
golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e
golang.org/x/tools v0.1.7 // indirect
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
golang.org/x/sys v0.0.0-20220204135822-1c1b9b1eba6a
golang.org/x/tools v0.1.9 // indirect
google.golang.org/genproto v0.0.0-20210416161957-9910b6c460de // indirect
google.golang.org/grpc v1.37.0 // indirect
gotest.tools v2.2.0+incompatible
Expand Down
Loading

0 comments on commit 186d484

Please sign in to comment.