mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-04 18:00:08 +00:00
deps: Bump to cAdvisor v0.47.2
Signed-off-by: Harshal Patil <harpatil@redhat.com>
This commit is contained in:
parent
bbc7ca94a4
commit
409bc8ccc0
2
go.mod
2
go.mod
@ -37,7 +37,7 @@ require (
|
|||||||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
|
||||||
github.com/golang/mock v1.6.0
|
github.com/golang/mock v1.6.0
|
||||||
github.com/golang/protobuf v1.5.3
|
github.com/golang/protobuf v1.5.3
|
||||||
github.com/google/cadvisor v0.47.1
|
github.com/google/cadvisor v0.47.2
|
||||||
github.com/google/cel-go v0.16.0
|
github.com/google/cel-go v0.16.0
|
||||||
github.com/google/gnostic-models v0.6.8
|
github.com/google/gnostic-models v0.6.8
|
||||||
github.com/google/go-cmp v0.5.9
|
github.com/google/go-cmp v0.5.9
|
||||||
|
4
go.sum
4
go.sum
@ -478,8 +478,8 @@ github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Z
|
|||||||
github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
|
github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
|
||||||
github.com/google/btree v1.0.1 h1:gK4Kx5IaGY9CD5sPJ36FHiBJ6ZXl0kilRiiCj+jdYp4=
|
github.com/google/btree v1.0.1 h1:gK4Kx5IaGY9CD5sPJ36FHiBJ6ZXl0kilRiiCj+jdYp4=
|
||||||
github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA=
|
github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA=
|
||||||
github.com/google/cadvisor v0.47.1 h1:YyKnRy/3myRNGOvF1bNF9FFnpjY7Gky5yKi/ZlN+BSo=
|
github.com/google/cadvisor v0.47.2 h1:lOS3Yprk88AIUi260eKYmTC4pKWAFkXV6Xev5jfCIP8=
|
||||||
github.com/google/cadvisor v0.47.1/go.mod h1:iJdTjcjyKHjLCf7OSTzwP5GxdfrkPusw2x5bwGvuLUw=
|
github.com/google/cadvisor v0.47.2/go.mod h1:iJdTjcjyKHjLCf7OSTzwP5GxdfrkPusw2x5bwGvuLUw=
|
||||||
github.com/google/cel-go v0.16.0 h1:DG9YQ8nFCFXAs/FDDwBxmL1tpKNrdlGUM9U3537bX/Y=
|
github.com/google/cel-go v0.16.0 h1:DG9YQ8nFCFXAs/FDDwBxmL1tpKNrdlGUM9U3537bX/Y=
|
||||||
github.com/google/cel-go v0.16.0/go.mod h1:HXZKzB0LXqer5lHHgfWAnlYwJaQBDKMjxjulNQzhwhY=
|
github.com/google/cel-go v0.16.0/go.mod h1:HXZKzB0LXqer5lHHgfWAnlYwJaQBDKMjxjulNQzhwhY=
|
||||||
github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I=
|
github.com/google/gnostic-models v0.6.8 h1:yo/ABAfM5IMRsS1VnXjTBvUb61tFIHozhlYvRgGre9I=
|
||||||
|
20
vendor/github.com/google/cadvisor/container/crio/handler.go
generated
vendored
20
vendor/github.com/google/cadvisor/container/crio/handler.go
generated
vendored
@ -305,14 +305,20 @@ func (h *crioContainerHandler) GetStats() (*info.ContainerStats, error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return stats, err
|
return stats, err
|
||||||
}
|
}
|
||||||
// Clean up stats for containers that don't have their own network - this
|
|
||||||
// includes containers running in Kubernetes pods that use the network of the
|
|
||||||
// infrastructure container. This stops metrics being reported multiple times
|
|
||||||
// for each container in a pod.
|
|
||||||
if !h.needNet() {
|
|
||||||
stats.Network = info.NetworkStats{}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
if !h.needNet() {
|
||||||
|
// Clean up stats for containers that don't have their own network - this
|
||||||
|
// includes containers running in Kubernetes pods that use the network of the
|
||||||
|
// infrastructure container. This stops metrics being reported multiple times
|
||||||
|
// for each container in a pod.
|
||||||
|
stats.Network = info.NetworkStats{}
|
||||||
|
} else if len(stats.Network.Interfaces) == 0 {
|
||||||
|
// No network related information indicates that the pid of the
|
||||||
|
// container is not longer valid and we need to ask crio to
|
||||||
|
// provide the pid of another container from that pod
|
||||||
|
h.pidKnown = false
|
||||||
|
return stats, nil
|
||||||
|
}
|
||||||
// Get filesystem stats.
|
// Get filesystem stats.
|
||||||
err = h.getFsStats(stats)
|
err = h.getFsStats(stats)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
2
vendor/modules.txt
vendored
2
vendor/modules.txt
vendored
@ -303,7 +303,7 @@ github.com/golang/protobuf/ptypes/wrappers
|
|||||||
# github.com/google/btree v1.0.1
|
# github.com/google/btree v1.0.1
|
||||||
## explicit; go 1.12
|
## explicit; go 1.12
|
||||||
github.com/google/btree
|
github.com/google/btree
|
||||||
# github.com/google/cadvisor v0.47.1
|
# github.com/google/cadvisor v0.47.2
|
||||||
## explicit; go 1.16
|
## explicit; go 1.16
|
||||||
github.com/google/cadvisor/cache/memory
|
github.com/google/cadvisor/cache/memory
|
||||||
github.com/google/cadvisor/client/v2
|
github.com/google/cadvisor/client/v2
|
||||||
|
Loading…
Reference in New Issue
Block a user