dependencies: update klog to v2.40.1

The new release adds support for multi-line string output (required for
contextual logging) and Verbose.InfoSDepth (required to properly attach
verbosity to some log messages in helper code).

Kubernetes-commit: cb17b76d4d0a1c8021b427cd15b5d504bb468ee6
This commit is contained in:
Patrick Ohly
2021-12-17 14:23:59 +01:00
committed by Kubernetes Publisher
parent a6257fdee4
commit 416ac20107
2 changed files with 8 additions and 11 deletions

11
go.mod
View File

@@ -30,9 +30,9 @@ require (
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac
google.golang.org/protobuf v1.27.1
k8s.io/api v0.0.0-20211217212405-236866c4c265
k8s.io/apimachinery v0.0.0-20211215211714-e7b02e651498
k8s.io/klog/v2 v2.30.0
k8s.io/api v0.0.0
k8s.io/apimachinery v0.0.0
k8s.io/klog/v2 v2.40.1
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65
k8s.io/utils v0.0.0-20211208161948-7d6a63dca704
sigs.k8s.io/structured-merge-diff/v4 v4.1.2
@@ -40,6 +40,7 @@ require (
)
replace (
k8s.io/api => k8s.io/api v0.0.0-20211217212405-236866c4c265
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20211215211714-e7b02e651498
k8s.io/api => ../api
k8s.io/apimachinery => ../apimachinery
k8s.io/client-go => ../client-go
)