summaryrefslogtreecommitdiff
path: root/pkg/api
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-07-21 06:11:10 -0400
committerGitHub <noreply@github.com>2021-07-21 06:11:10 -0400
commit0ef01c881f291982bd8eebc9c92cb6e09b1473aa (patch)
tree77b044e178c7c8f64a79cb8f4649a75627bb0090 /pkg/api
parenta7dcae5abc81d4c4809aebca39b2ac9db1bca3d7 (diff)
parentdb2f474284b18b4a2d9c3671278500c92a9c19d7 (diff)
downloadpodman-0ef01c881f291982bd8eebc9c92cb6e09b1473aa.tar.gz
podman-0ef01c881f291982bd8eebc9c92cb6e09b1473aa.tar.bz2
podman-0ef01c881f291982bd8eebc9c92cb6e09b1473aa.zip
Merge pull request #10999 from rhatdan/quota1
Drop support for the --storage-opt container flag
Diffstat (limited to 'pkg/api')
-rw-r--r--pkg/api/handlers/libpod/containers_create.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/api/handlers/libpod/containers_create.go b/pkg/api/handlers/libpod/containers_create.go
index b92588346..65951861b 100644
--- a/pkg/api/handlers/libpod/containers_create.go
+++ b/pkg/api/handlers/libpod/containers_create.go
@@ -22,6 +22,7 @@ func CreateContainer(w http.ResponseWriter, r *http.Request) {
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, errors.Wrap(err, "Decode()"))
return
}
+
warn, err := generate.CompleteSpec(r.Context(), runtime, &sg)
if err != nil {
utils.InternalServerError(w, err)