File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
content/en/docs/tasks/debug/debug-cluster Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -41,8 +41,11 @@ memory usage. The kubelet acts as a bridge between the Kubernetes master and
41
41
the nodes, managing the pods and containers running on a machine. The kubelet
42
42
translates each pod into its constituent containers and fetches individual
43
43
container usage statistics from the container runtime through the container
44
- runtime interface. The kubelet fetches this information from the integrated
45
- cAdvisor for the legacy Docker integration. It then exposes the aggregated pod
44
+ runtime interface. If you use a container runtime that uses Linux cgroups and
45
+ namespaces to implement containers, and the container runtime does not publish
46
+ usage statistics, then the kubelet can look up those statistics directly
47
+ (using code from [ cAdvisor] ( https://github.com/google/cadvisor ) ).
48
+ No matter how those statistics arrive, the kubelet then exposes the aggregated pod
46
49
resource usage statistics through the metrics-server Resource Metrics API.
47
50
This API is served at ` /metrics/resource/v1beta1 ` on the kubelet's authenticated and
48
51
read-only ports.
You can’t perform that action at this time.
0 commit comments