mirror of
https://github.com/containers/podman.git
synced 2025-08-01 16:24:58 +08:00

accept only the resources to be used by the pod, so that the function can more easily be used by a successive patch. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
10 lines
201 B
Go
10 lines
201 B
Go
package libpod
|
|
|
|
import (
|
|
spec "github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
func (r *Runtime) platformMakePod(pod *Pod, resourceLimits *spec.LinuxResources) (string, error) {
|
|
return "", nil
|
|
}
|