Merge pull request #13712 from Luap99/netns-scope-systemd

rootless netns: move process to scope only with systemd
This commit is contained in:
OpenShift Merge Robot
2022-03-30 10:23:19 -04:00
committed by GitHub

View File

@ -498,11 +498,14 @@ func (r *Runtime) GetRootlessNetNs(new bool) (*RootlessNetNS, error) {
return nil, err return nil, err
} }
if utils.RunsOnSystemd() {
// move to systemd scope to prevent systemd from killing it // move to systemd scope to prevent systemd from killing it
err = utils.MoveRootlessNetnsSlirpProcessToUserSlice(cmd.Process.Pid) err = utils.MoveRootlessNetnsSlirpProcessToUserSlice(cmd.Process.Pid)
if err != nil { if err != nil {
// only log this, it is not fatal but can lead to issues when running podman inside systemd units
logrus.Errorf("failed to move the rootless netns slirp4netns process to the systemd user.slice: %v", err) logrus.Errorf("failed to move the rootless netns slirp4netns process to the systemd user.slice: %v", err)
} }
}
// build a new resolv.conf file which uses the slirp4netns dns server address // build a new resolv.conf file which uses the slirp4netns dns server address
resolveIP, err := GetSlirp4netnsDNS(nil) resolveIP, err := GetSlirp4netnsDNS(nil)