diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-09-21 08:40:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 08:40:40 -0400 |
commit | 9b5522d9adff9e8b2413e626bfc62d1df28ce534 (patch) | |
tree | 6d3b482de0ef857f8956c35c35788238f706c303 /libpod/define/pod_inspect.go | |
parent | b925d707fa768245b3bd50d570b91992c1814dba (diff) | |
parent | 8fac34b8ff05314fe6996567af9336cf034b2d03 (diff) | |
download | podman-9b5522d9adff9e8b2413e626bfc62d1df28ce534.tar.gz podman-9b5522d9adff9e8b2413e626bfc62d1df28ce534.tar.bz2 podman-9b5522d9adff9e8b2413e626bfc62d1df28ce534.zip |
Merge pull request #11518 from cdoern/podDevice
Pod Devices support
Diffstat (limited to 'libpod/define/pod_inspect.go')
-rw-r--r-- | libpod/define/pod_inspect.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/define/pod_inspect.go b/libpod/define/pod_inspect.go index b7a6e76b5..e78d97850 100644 --- a/libpod/define/pod_inspect.go +++ b/libpod/define/pod_inspect.go @@ -59,6 +59,8 @@ type InspectPodData struct { CPUSetCPUs string `json:"cpuset_cpus,omitempty"` // Mounts contains volume related information for the pod Mounts []InspectMount `json:"mounts,omitempty"` + // Devices contains the specified host devices + Devices []InspectDevice `json:"devices,omitempty"` } // InspectPodInfraConfig contains the configuration of the pod's infra |