From 945e3b3ee1007ab35ab8264dc53f36f3e69e3762 Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Fri, 29 Jun 2018 16:15:42 +0300 Subject: [PATCH] test/e2e_node/system/types_unix: support ZFS Docker validation tests in the case of ZFS used as the graph driver fail due to "zfs" not being present in the default Docker specification. Add "zfs" in the GraphDriver slice. --- test/e2e_node/system/types_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e_node/system/types_unix.go b/test/e2e_node/system/types_unix.go index 4480b729a477..be4b6b2606ed 100644 --- a/test/e2e_node/system/types_unix.go +++ b/test/e2e_node/system/types_unix.go @@ -63,7 +63,7 @@ var DefaultSysSpec = SysSpec{ RuntimeSpec: RuntimeSpec{ DockerSpec: &DockerSpec{ Version: []string{`1\.1[1-3]\..*`, `17\.03\..*`}, // Requires [1.11, 17.03] - GraphDriver: []string{"aufs", "overlay", "overlay2", "devicemapper"}, + GraphDriver: []string{"aufs", "overlay", "overlay2", "devicemapper", "zfs"}, }, }, }