mirror of
https://github.com/containers/podman.git
synced 2025-08-02 17:22:30 +08:00
Pod Device Support
added support for pod devices. The device gets added to the infra container and recreated in all containers that join the pod. This required a new container config item to keep track of the original device passed in by the user before the path was parsed into the container device. Signed-off-by: cdoern <cdoern@redhat.com>
This commit is contained in:
@ -278,6 +278,11 @@ func (c *Container) Config() *ContainerConfig {
|
||||
return returnConfig
|
||||
}
|
||||
|
||||
// DeviceHostSrc returns the user supplied device to be passed down in the pod
|
||||
func (c *Container) DeviceHostSrc() []spec.LinuxDevice {
|
||||
return c.config.DeviceHostSrc
|
||||
}
|
||||
|
||||
// Runtime returns the container's Runtime.
|
||||
func (c *Container) Runtime() *Runtime {
|
||||
return c.runtime
|
||||
|
Reference in New Issue
Block a user