From a2a27eedf44303a60f580e03be617124ce35bb17 Mon Sep 17 00:00:00 2001 From: Konstantin Baranov Date: Tue, 6 Oct 2020 15:34:02 -0700 Subject: Ignore errors in rootless and test modes --- runsc/container/container.go | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'runsc/container') diff --git a/runsc/container/container.go b/runsc/container/container.go index 21a01b5de..878432dbb 100644 --- a/runsc/container/container.go +++ b/runsc/container/container.go @@ -327,7 +327,16 @@ func New(conf *boot.Config, args Args) (*Container, error) { if cg != nil { // If there is cgroup config, install it before creating sandbox process. if err := cg.Install(args.Spec.Linux.Resources); err != nil { - return nil, fmt.Errorf("configuring cgroup: %v", err) + switch { + case errors.Is(err, syscall.EROFS) && conf.TestOnlyAllowRunAsCurrentUserWithoutChroot: + log.Warningf("Skipping cgroup configuration in test mode: %v", err) + cg = nil + case errors.Is(err, syscall.EACCES) && conf.Rootless: + log.Warningf("Skipping cgroup configuration in rootless mode: %v", err) + cg = nil + default: + return nil, fmt.Errorf("configuring cgroup: %v", err) + } } } if err := runInCgroup(cg, func() error { -- cgit v1.2.3