summaryrefslogtreecommitdiff
path: root/libpod/options.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-21 08:40:40 -0400
committerGitHub <noreply@github.com>2021-09-21 08:40:40 -0400
commit9b5522d9adff9e8b2413e626bfc62d1df28ce534 (patch)
tree6d3b482de0ef857f8956c35c35788238f706c303 /libpod/options.go
parentb925d707fa768245b3bd50d570b91992c1814dba (diff)
parent8fac34b8ff05314fe6996567af9336cf034b2d03 (diff)
downloadpodman-9b5522d9adff9e8b2413e626bfc62d1df28ce534.tar.gz
podman-9b5522d9adff9e8b2413e626bfc62d1df28ce534.tar.bz2
podman-9b5522d9adff9e8b2413e626bfc62d1df28ce534.zip
Merge pull request #11518 from cdoern/podDevice
Pod Devices support
Diffstat (limited to 'libpod/options.go')
-rw-r--r--libpod/options.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/libpod/options.go b/libpod/options.go
index 3f6ccf1cb..a80f51c6a 100644
--- a/libpod/options.go
+++ b/libpod/options.go
@@ -21,6 +21,7 @@ import (
"github.com/containers/podman/v3/pkg/util"
"github.com/containers/storage"
"github.com/containers/storage/pkg/idtools"
+ "github.com/opencontainers/runtime-spec/specs-go"
"github.com/opencontainers/runtime-tools/generate"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
@@ -1809,6 +1810,17 @@ func WithInitCtrType(containerType string) CtrCreateOption {
}
}
+// WithHostDevice adds the original host src to the config
+func WithHostDevice(dev []specs.LinuxDevice) CtrCreateOption {
+ return func(ctr *Container) error {
+ if ctr.valid {
+ return define.ErrCtrFinalized
+ }
+ ctr.config.DeviceHostSrc = dev
+ return nil
+ }
+}
+
// Pod Creation Options
// WithPodCreateCommand adds the full command plus arguments of the current