Skip to content

Commit

Permalink
Support tmpfs in processMounts
Browse files Browse the repository at this point in the history
Helps with the situation in kubernetes where /var/lib/kubelet is
mounted using tmpfs.
  • Loading branch information
dims committed Jun 6, 2017
1 parent b971fd1 commit a7f98d4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions fs/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down

0 comments on commit a7f98d4

Please sign in to comment.