diff options
author | Qi Wang <qiwan@redhat.com> | 2020-05-21 16:17:06 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2020-05-21 16:17:39 -0400 |
commit | f7dd915acccd42208edb2d7630f8f3dd48c7ec10 (patch) | |
tree | f979a00f3319ae2fb7776b80e9eb258fe8767588 /pkg/api | |
parent | f6aa620b05a057ca8fb9631b66313c6220de50c2 (diff) | |
download | podman-f7dd915acccd42208edb2d7630f8f3dd48c7ec10.tar.gz podman-f7dd915acccd42208edb2d7630f8f3dd48c7ec10.tar.bz2 podman-f7dd915acccd42208edb2d7630f8f3dd48c7ec10.zip |
remote manifest test
Enable remove manifest tests. Skip --purge test because remote does not support it.
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'pkg/api')
-rw-r--r-- | pkg/api/handlers/libpod/manifests.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/api/handlers/libpod/manifests.go b/pkg/api/handlers/libpod/manifests.go index d87ed7eba..93ca367f7 100644 --- a/pkg/api/handlers/libpod/manifests.go +++ b/pkg/api/handlers/libpod/manifests.go @@ -151,6 +151,7 @@ func ManifestPush(w http.ResponseWriter, r *http.Request) { } sc := image.GetSystemContext(rtc.Engine.SignaturePolicyPath, "", false) opts := manifests.PushOptions{ + Store: runtime.GetStore(), ImageListSelection: copy2.CopySpecificImages, SystemContext: sc, } |