From 7eeb4d04769f9a10a5f7e10476a3f241fb24709f Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Fri, 25 Oct 2019 09:45:01 +0200 Subject: [PATCH] Update CRI-O storage driver support Some storage drivers seems to be missing which are now supported by CRI-O. Beside that, we removed the non-existing overlay2 driver. Signed-off-by: Sascha Grunert --- fs/fs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/fs.go b/fs/fs.go index 4dfa4e80..f4a61591 100644 --- a/fs/fs.go +++ b/fs/fs.go @@ -283,7 +283,7 @@ func (self *RealFsInfo) addCrioImagesLabel(context Context, mounts []*mount.Info crioImagePaths := map[string]struct{}{ "/": {}, } - for _, dir := range []string{"overlay", "overlay2"} { + for _, dir := range []string{"devicemapper", "btrfs", "aufs", "overlay", "zfs"} { crioImagePaths[path.Join(crioPath, dir+"-images")] = struct{}{} } for crioPath != "/" && crioPath != "." {