Merge pull request #93243 from AlexeyPerevalov/NUMAidAndCPUidsInPodResources

Implement TopologyInfo and cpu_ids in podresources interface
This commit is contained in:
Kubernetes Prow Robot
2020-11-11 12:35:11 -08:00
committed by GitHub
26 changed files with 901 additions and 154 deletions

View File

@@ -2193,7 +2193,7 @@ func (kl *Kubelet) ListenAndServePodResources() {
klog.V(2).Infof("Failed to get local endpoint for PodResources endpoint: %v", err)
return
}
server.ListenAndServePodResources(socket, kl.podManager, kl.containerManager)
server.ListenAndServePodResources(socket, kl.podManager, kl.containerManager, kl.containerManager)
}
// Delete the eligible dead container instances in a pod. Depending on the configuration, the latest dead containers may be kept around.