From 55cc58568ff94f35f9b366571d5b592824119393 Mon Sep 17 00:00:00 2001 From: Antonio Murdaca Date: Wed, 21 Sep 2016 08:43:24 +0200 Subject: [PATCH] server/sandbox: fix path to pause rootfs Signed-off-by: Antonio Murdaca --- server/sandbox.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sandbox.go b/server/sandbox.go index 50d7c090..70067115 100644 --- a/server/sandbox.go +++ b/server/sandbox.go @@ -75,7 +75,7 @@ func (s *Server) CreatePodSandbox(ctx context.Context, req *pb.CreatePodSandboxR g := generate.New() // setup defaults for the pod sandbox - g.SetRootPath(filepath.Join(podInfraRootfs, "rootfs")) + g.SetRootPath(podInfraRootfs) g.SetRootReadonly(true) g.SetProcessArgs([]string{"/pause"})