summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/libpod/pods.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 /pkg/api/handlers/libpod/pods.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 'pkg/api/handlers/libpod/pods.go')
-rw-r--r--pkg/api/handlers/libpod/pods.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/api/handlers/libpod/pods.go b/pkg/api/handlers/libpod/pods.go
index 1f03e121e..9f46ecc52 100644
--- a/pkg/api/handlers/libpod/pods.go
+++ b/pkg/api/handlers/libpod/pods.go
@@ -41,8 +41,8 @@ func PodCreate(w http.ResponseWriter, r *http.Request) {
return
}
if !psg.NoInfra {
- infraOptions := &entities.ContainerCreateOptions{ImageVolume: "bind", IsInfra: true, Net: &entities.NetOptions{}} // options for pulling the image and FillOutSpec
- err = specgenutil.FillOutSpecGen(psg.InfraContainerSpec, infraOptions, []string{}) // necessary for default values in many cases (userns, idmappings)
+ infraOptions := &entities.ContainerCreateOptions{ImageVolume: "bind", IsInfra: true, Net: &entities.NetOptions{}, Devices: psg.Devices} // options for pulling the image and FillOutSpec
+ err = specgenutil.FillOutSpecGen(psg.InfraContainerSpec, infraOptions, []string{}) // necessary for default values in many cases (userns, idmappings)
if err != nil {
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, errors.Wrap(err, "error filling out specgen"))
return