Support tmpfs in processMounts

Helps with the situation in kubernetes where /var/lib/kubelet is
mounted using tmpfs.
This commit is contained in:
Davanum Srinivas 2017-06-05 22:59:25 -04:00
parent b971fd1850
commit a7f98d4ea8

View File

@ -125,6 +125,7 @@ func processMounts(mounts []*mount.Info, excludedMountpointPrefixes []string) ma
supportedFsType := map[string]bool{
// all ext systems are checked through prefix.
"btrfs": true,
"tmpfs": true,
"xfs": true,
"zfs": true,
}