update kubelet to look at all cgroup mounts

This commit is contained in:
derekwaynecarr 2016-10-10 14:24:18 -04:00
parent 07bd42a192
commit 62e1759ac0

View File

@ -25,7 +25,7 @@ import (
// GetCgroupSubsystems returns information about the mounted cgroup subsystems
func GetCgroupSubsystems() (*CgroupSubsystems, error) {
// get all cgroup mounts.
allCgroups, err := libcontainercgroups.GetCgroupMounts()
allCgroups, err := libcontainercgroups.GetCgroupMounts(true)
if err != nil {
return &CgroupSubsystems{}, err
}