diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-07-20 14:18:03 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-07-20 16:36:10 -0400 |
commit | db2f474284b18b4a2d9c3671278500c92a9c19d7 (patch) | |
tree | 8abefd02a00c90e1bb2822d013dc0f2f1e2751d9 /pkg/api/handlers/libpod | |
parent | 389c9b8dca942fb4977823dd504d3d351cb92acd (diff) | |
download | podman-db2f474284b18b4a2d9c3671278500c92a9c19d7.tar.gz podman-db2f474284b18b4a2d9c3671278500c92a9c19d7.tar.bz2 podman-db2f474284b18b4a2d9c3671278500c92a9c19d7.zip |
Drop podman create --storage-opt container flag
The global flag will work in either location, and this flag just breaks
users expectations, and is basically a noop.
Also fix global storage-opt so that podman-remote can use it.
[NO TESTS NEEDED] Since it would be difficult to test in ci/cd.
Fixes: https://github.com/containers/podman/issues/10264
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg/api/handlers/libpod')
-rw-r--r-- | pkg/api/handlers/libpod/containers_create.go | 1 |
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) |