Skip to content

Commit

Permalink
vendor: bump runc to rc95
Browse files Browse the repository at this point in the history
runc rc95 contains a fix for CVE-2021-30465.

runc rc94 provides fixes and improvements.

One notable change is cgroup manager's Set now accept Resources rather
than Cgroup (see opencontainers/runc#2906).
Modify the code accordingly.

Also update runc dependencies (as hinted by hack/lint-depdendencies.sh):

        github.com/cilium/ebpf v0.5.0
        github.com/containerd/console v1.0.2
        github.com/coreos/go-systemd/v22 v22.3.1
        github.com/godbus/dbus/v5 v5.0.4
        github.com/moby/sys/mountinfo v0.4.1
        golang.org/x/sys v0.0.0-20210426230700-d19ff857e887
        github.com/google/go-cmp v0.5.4
        github.com/kr/pretty v0.2.1
        github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>

Kubernetes-commit: 5eea5478ae4859f2d66135d086b9675361d8d2a8
  • Loading branch information
kolyshkin authored and k8s-publishing-bot committed May 19, 2021
1 parent 88a463a commit 6f250ca
Show file tree
Hide file tree
Showing 2 changed files with 244 additions and 24 deletions.
21 changes: 11 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,20 @@ require (
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.6.1
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
k8s.io/api v0.0.0-20210313025757-51a1c5553d68
k8s.io/apimachinery v0.0.0-20210329111815-e337f44144a6
k8s.io/apiserver v0.0.0-20210313032134-0eb3da2e7ac5
k8s.io/client-go v0.0.0-20210329112528-6be0785e0e32
k8s.io/component-base v0.0.0-20210313031516-9f42c8df41b0
k8s.io/api v0.0.0
k8s.io/apimachinery v0.0.0
k8s.io/apiserver v0.0.0
k8s.io/client-go v0.0.0
k8s.io/component-base v0.0.0
k8s.io/klog/v2 v2.8.0
k8s.io/utils v0.0.0-20201110183641-67b214c5f920
)

replace (
k8s.io/api => k8s.io/api v0.0.0-20210313025757-51a1c5553d68
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20210329111815-e337f44144a6
k8s.io/apiserver => k8s.io/apiserver v0.0.0-20210313032134-0eb3da2e7ac5
k8s.io/client-go => k8s.io/client-go v0.0.0-20210329112528-6be0785e0e32
k8s.io/component-base => k8s.io/component-base v0.0.0-20210313031516-9f42c8df41b0
k8s.io/api => ../api
k8s.io/apimachinery => ../apimachinery
k8s.io/apiserver => ../apiserver
k8s.io/client-go => ../client-go
k8s.io/component-base => ../component-base
k8s.io/controller-manager => ../controller-manager
)
Loading

0 comments on commit 6f250ca

Please sign in to comment.