From b1ced2af03c5a8009c314bde80b5f2516e0522fd Mon Sep 17 00:00:00 2001 From: Phil Estes Date: Thu, 24 Aug 2017 10:52:11 -0700 Subject: [PATCH] Turn off plugin upgrade test when userns on Until volume plugins can be made aware of the remapped root, interactions with volumes created by plugin will not work as the file ownership denies permissions to the userns remapped range. Docker-DCO-1.1-Signed-off-by: Phil Estes --- integration-cli/docker_cli_plugins_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_plugins_test.go b/integration-cli/docker_cli_plugins_test.go index 38b4af8f1e..bacb6c777c 100644 --- a/integration-cli/docker_cli_plugins_test.go +++ b/integration-cli/docker_cli_plugins_test.go @@ -462,7 +462,7 @@ enabled: false`, id, name) } func (s *DockerSuite) TestPluginUpgrade(c *check.C) { - testRequires(c, DaemonIsLinux, Network, SameHostDaemon, IsAmd64) + testRequires(c, DaemonIsLinux, Network, SameHostDaemon, IsAmd64, NotUserNamespace) plugin := "cpuguy83/docker-volume-driver-plugin-local:latest" pluginV2 := "cpuguy83/docker-volume-driver-plugin-local:v2"