We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c58b632 + 47642a0 commit 80eed95Copy full SHA for 80eed95
pkg/kubelet/cm/cgroup_manager_linux.go
@@ -257,6 +257,9 @@ func (m *cgroupManagerImpl) Exists(name CgroupName) bool {
257
if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.SupportPodPidsLimit) || utilfeature.DefaultFeatureGate.Enabled(kubefeatures.SupportNodePidsLimit) {
258
whitelistControllers.Insert("pids")
259
}
260
+ if _, ok := m.subsystems.MountPoints["hugetlb"]; ok {
261
+ whitelistControllers.Insert("hugetlb")
262
+ }
263
var missingPaths []string
264
// If even one cgroup path doesn't exist, then the cgroup doesn't exist.
265
for controller, path := range cgroupPaths {
0 commit comments