func execSetPlatformOpt(c *container.Container, ec *exec.Config, p *libcontainerd.Process) error { if len(ec.User) > 0 { uid, gid, additionalGids, err := getUser(c, ec.User) if err != nil { return err } p.User = &libcontainerd.User{ UID: uid, GID: gid, AdditionalGids: additionalGids, } } if ec.Privileged { p.Capabilities = caps.GetAllCapabilities() } return nil }
func execSetPlatformOpt(c *container.Container, ec *exec.Config, p *libcontainerd.Process) error { // Process arguments need to be escaped before sending to OCI. p.Args = escapeArgs(p.Args) p.User.Username = ec.User return nil }
func execSetPlatformOpt(c *container.Container, ec *exec.Config, p *libcontainerd.Process) error { // Process arguments need to be escaped before sending to OCI. // TODO (jstarks): escape the entrypoint too once the tests are fixed to not rely on this behavior p.Args = append([]string{p.Args[0]}, escapeArgs(p.Args[1:])...) return nil }