aboutsummaryrefslogtreecommitdiff
path: root/testutil
diff options
context:
space:
mode:
authorAkihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>2020-03-10 11:36:30 +0900
committerAkihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>2020-04-07 00:59:15 +0900
commit5ca47f517953d0016a6d48d1c2d5f5afea54f170 (patch)
treedb9afe448b31f93dba5ef29d910bed2769bcf66e /testutil
parent5a685dc7e4e32480184e33091eefc55cc8977beb (diff)
rootless: graduate from experimental
Close #40484 Note that the support for cgroup v2 isn't ready for production yet, regardless to rootful or rootless. Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
Diffstat (limited to 'testutil')
-rw-r--r--testutil/daemon/daemon.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/testutil/daemon/daemon.go b/testutil/daemon/daemon.go
index 202aa623d2..724daaddd6 100644
--- a/testutil/daemon/daemon.go
+++ b/testutil/daemon/daemon.go
@@ -204,7 +204,7 @@ func New(t testing.TB, ops ...Option) *Daemon {
t.Skip("DOCKER_ROOTLESS doesn't support DOCKER_USERLANDPROXY=false")
}
}
- ops = append(ops, WithRootlessUser("unprivilegeduser"), WithExperimental())
+ ops = append(ops, WithRootlessUser("unprivilegeduser"))
}
d, err := NewDaemon(dest, ops...)