diff options
author | Aditya R <arajan@redhat.com> | 2022-06-30 11:33:28 +0530 |
---|---|---|
committer | Aditya R <arajan@redhat.com> | 2022-06-30 14:56:42 +0530 |
commit | 7bbfb3eb0d9c711332b5d96963bbc8db28bf6115 (patch) | |
tree | a06c4d46502c889f468e5ef3f1ec693331230662 /pkg/domain/infra | |
parent | 3426d56b92be2ac1c3cc62fc578e9cb6d64aca81 (diff) | |
download | podman-7bbfb3eb0d9c711332b5d96963bbc8db28bf6115.tar.gz podman-7bbfb3eb0d9c711332b5d96963bbc8db28bf6115.tar.bz2 podman-7bbfb3eb0d9c711332b5d96963bbc8db28bf6115.zip |
api,images: add support for LookupManifest to Image remove API
ImagesBatchRemoval and ImageRemoval now honors and accepts
`LookupManifest` parameter which further tells libimage to resolve to
manifest list if it exists instead of actual image.
Following PR also makes `podman-remote manifest rm` functional which was
broken till now.
Closes: https://github.com/containers/podman/issues/14763
Signed-off-by: Aditya R <arajan@redhat.com>
Diffstat (limited to 'pkg/domain/infra')
-rw-r--r-- | pkg/domain/infra/tunnel/images.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/infra/tunnel/images.go b/pkg/domain/infra/tunnel/images.go index b81b64161..09f8ac4c3 100644 --- a/pkg/domain/infra/tunnel/images.go +++ b/pkg/domain/infra/tunnel/images.go @@ -28,7 +28,7 @@ func (ir *ImageEngine) Exists(_ context.Context, nameOrID string) (*entities.Boo } func (ir *ImageEngine) Remove(ctx context.Context, imagesArg []string, opts entities.ImageRemoveOptions) (*entities.ImageRemoveReport, []error) { - options := new(images.RemoveOptions).WithForce(opts.Force).WithIgnore(opts.Ignore).WithAll(opts.All) + options := new(images.RemoveOptions).WithForce(opts.Force).WithIgnore(opts.Ignore).WithAll(opts.All).WithLookupManifest(opts.LookupManifest) return images.Remove(ir.ClientCtx, imagesArg, options) } |