forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request containers#16083 from dfr/freebsd-pod
Add support for 'podman pod' on FreeBSD
- Loading branch information
Showing
9 changed files
with
413 additions
and
360 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package libpod | ||
|
||
func (p *Pod) platformRefresh() error { | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package libpod | ||
|
||
import ( | ||
"fmt" | ||
"path/filepath" | ||
|
||
"github.com/containers/common/pkg/config" | ||
"github.com/containers/podman/v4/libpod/define" | ||
"github.com/containers/podman/v4/pkg/rootless" | ||
"github.com/sirupsen/logrus" | ||
) | ||
|
||
func (p *Pod) platformRefresh() error { | ||
// We need to recreate the pod's cgroup | ||
if p.config.UsePodCgroup { | ||
switch p.runtime.config.Engine.CgroupManager { | ||
case config.SystemdCgroupsManager: | ||
cgroupPath, err := systemdSliceFromPath(p.config.CgroupParent, fmt.Sprintf("libpod_pod_%s", p.ID()), p.ResourceLim()) | ||
if err != nil { | ||
logrus.Errorf("Creating Cgroup for pod %s: %v", p.ID(), err) | ||
} | ||
p.state.CgroupPath = cgroupPath | ||
case config.CgroupfsCgroupsManager: | ||
if rootless.IsRootless() && isRootlessCgroupSet(p.config.CgroupParent) { | ||
p.state.CgroupPath = filepath.Join(p.config.CgroupParent, p.ID()) | ||
|
||
logrus.Debugf("setting pod cgroup to %s", p.state.CgroupPath) | ||
} | ||
default: | ||
return fmt.Errorf("unknown cgroups manager %s specified: %w", p.runtime.config.Engine.CgroupManager, define.ErrInvalidArg) | ||
} | ||
} | ||
return nil | ||
} |
Oops, something went wrong.