Merge pull request #132215 from ffromani/e2e-serial-cpumgr-crio-fix

e2e: node: serial: fix cgroup path with crio
This commit is contained in:
Kubernetes Prow Robot
2025-06-11 04:04:57 -07:00
committed by GitHub

View File

@@ -1435,7 +1435,7 @@ func makeCgroupPathForContainer(pod *v1.Pod, ctnName string, isInit bool) (strin
func containerCgroupPathPrefixFromDriver(runtimeName string) string {
if runtimeName == "cri-o" {
return "cri-o"
return "crio"
}
return "cri-containerd"
}