diff options
author | Qi Wang <qiwan@redhat.com> | 2020-10-21 09:51:35 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2020-10-21 10:00:08 -0400 |
commit | b898f914a3a9b8cad5519ace0167d738e2f85186 (patch) | |
tree | 19c8a7dcc25b5375c4e0fd8010f62ee34d743cd9 /pkg/api/handlers/libpod | |
parent | 94873a237ab52db27916b8954e489fe780eea069 (diff) | |
download | podman-b898f914a3a9b8cad5519ace0167d738e2f85186.tar.gz podman-b898f914a3a9b8cad5519ace0167d738e2f85186.tar.bz2 podman-b898f914a3a9b8cad5519ace0167d738e2f85186.zip |
save image remove signatures
remove signatures to podman save since the image formats do not support signatures
Close: #7659
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'pkg/api/handlers/libpod')
-rw-r--r-- | pkg/api/handlers/libpod/images.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/api/handlers/libpod/images.go b/pkg/api/handlers/libpod/images.go index 3fb5d23c8..598a46abe 100644 --- a/pkg/api/handlers/libpod/images.go +++ b/pkg/api/handlers/libpod/images.go @@ -206,7 +206,7 @@ func ExportImage(w http.ResponseWriter, r *http.Request) { utils.Error(w, "unknown format", http.StatusInternalServerError, errors.Errorf("unknown format %q", query.Format)) return } - if err := newImage.Save(r.Context(), name, query.Format, output, []string{}, false, query.Compress); err != nil { + if err := newImage.Save(r.Context(), name, query.Format, output, []string{}, false, query.Compress, true); err != nil { utils.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest, err) return } @@ -284,6 +284,7 @@ func ExportImages(w http.ResponseWriter, r *http.Request) { Format: query.Format, MultiImageArchive: true, Output: output, + RemoveSignatures: true, } imageEngine := abi.ImageEngine{Libpod: runtime} |