From db2f474284b18b4a2d9c3671278500c92a9c19d7 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Tue, 20 Jul 2021 14:18:03 -0400 Subject: 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 --- pkg/api/handlers/libpod/containers_create.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/api') 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) -- cgit v1.2.3-54-g00ecf