X Tutup
Skip to content

Commit e634f04

Browse files
committed
go.mod: update kubernetes to v1.22.0
This brings in some cri api changes for cgroups, Windows pod sandbox security context changes and some new fields for the Windows version of a privileged container. This also unfortunately bumps the prometheus client, grpc middleware, bolt and klog :( Signed-off-by: Daniel Canter <dcanter@microsoft.com>
1 parent 587fc09 commit e634f04

File tree

373 files changed

+44846
-5572
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

373 files changed

+44846
-5572
lines changed

go.mod

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ require (
3232
github.com/gogo/protobuf v1.3.2
3333
github.com/google/go-cmp v0.5.6
3434
github.com/google/uuid v1.2.0
35-
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4
35+
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
3636
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
3737
github.com/hashicorp/go-multierror v1.0.0
3838
github.com/imdario/mergo v0.3.12
@@ -48,33 +48,32 @@ require (
4848
github.com/opencontainers/selinux v1.8.2
4949
github.com/pelletier/go-toml v1.8.1
5050
github.com/pkg/errors v0.9.1
51-
github.com/prometheus/client_golang v1.7.1
52-
github.com/prometheus/procfs v0.6.0 // indirect; temporarily force v0.6.0, which was previously defined in imgcrypt as explicit version
51+
github.com/prometheus/client_golang v1.11.0
5352
github.com/satori/go.uuid v1.2.0 // indirect
5453
github.com/sirupsen/logrus v1.8.1
5554
github.com/stretchr/testify v1.7.0
5655
github.com/tchap/go-patricia v2.2.6+incompatible
5756
github.com/urfave/cli v1.22.2
58-
go.etcd.io/bbolt v1.3.5
57+
go.etcd.io/bbolt v1.3.6
5958
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.21.0
6059
go.opentelemetry.io/otel v1.0.0-RC1
6160
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.0.0-RC1
6261
go.opentelemetry.io/otel/sdk v1.0.0-RC1
6362
go.opentelemetry.io/otel/trace v1.0.0-RC1
64-
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
65-
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
63+
golang.org/x/net v0.0.0-20210520170846-37e1c6afe023
64+
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
6665
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c
6766
google.golang.org/grpc v1.38.0
6867
google.golang.org/protobuf v1.26.0
6968
gotest.tools/v3 v3.0.3
70-
k8s.io/api v0.20.6
71-
k8s.io/apimachinery v0.20.6
72-
k8s.io/apiserver v0.20.6
73-
k8s.io/client-go v0.20.6
74-
k8s.io/component-base v0.20.6
75-
k8s.io/cri-api v0.20.6
76-
k8s.io/klog/v2 v2.4.0
77-
k8s.io/utils v0.0.0-20201110183641-67b214c5f920
69+
k8s.io/api v0.22.0
70+
k8s.io/apimachinery v0.22.0
71+
k8s.io/apiserver v0.22.0
72+
k8s.io/client-go v0.22.0
73+
k8s.io/component-base v0.22.0
74+
k8s.io/cri-api v0.22.0
75+
k8s.io/klog/v2 v2.9.0
76+
k8s.io/utils v0.0.0-20210707171843-4b05e18ac7d9
7877
)
7978

8079
// When updating replace rules, make sure to also update the rules in integration/client/go.mod and api/go.mod

go.sum

Lines changed: 191 additions & 93 deletions
Large diffs are not rendered by default.

integration/client/go.sum

Lines changed: 169 additions & 70 deletions
Large diffs are not rendered by default.

vendor/github.com/blang/semver/.travis.yml

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/blang/semver/LICENSE

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/blang/semver/README.md

Lines changed: 194 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/blang/semver/json.go

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/blang/semver/package.json

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
X Tutup