Merge pull request #13640 from Luap99/slirp4netns-fail

network setup: fail if slirp4netns is not installed
This commit is contained in:
OpenShift Merge Robot
2022-03-28 15:51:51 +02:00
committed by GitHub

View File

@ -216,8 +216,7 @@ func (r *Runtime) setupSlirp4netns(ctr *Container, netns ns.NetNS) error {
var err error
path, err = exec.LookPath("slirp4netns")
if err != nil {
logrus.Errorf("Could not find slirp4netns, the network namespace won't be configured: %v", err)
return nil
return fmt.Errorf("could not find slirp4netns, the network namespace can't be configured: %w", err)
}
}