Skip to content

Commit

Permalink
test/e2e_node/system/types_unix: support ZFS
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
neolit123 committed Jun 29, 2018
1 parent 90f681b commit 945e3b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e_node/system/types_unix.go
Expand Up @@ -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"},
},
},
}
Expand Down

0 comments on commit 945e3b3

Please sign in to comment.