Skip to content

Commit

Permalink
Merge pull request #10870 from vrothberg/manifest-push-rm
Browse files Browse the repository at this point in the history
manifest push --rm: use libimage for removal
  • Loading branch information
openshift-merge-robot authored Jul 7, 2021
2 parents c583d4d + 38bef70 commit 1a9cb93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/domain/infra/abi/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,8 @@ func (ir *ImageEngine) ManifestPush(ctx context.Context, name, destination strin
}

if opts.Rm {
if _, err := ir.Libpod.GetStore().DeleteImage(manifestList.ID(), true); err != nil {
return "", errors.Wrap(err, "error removing manifest after push")
if _, rmErrors := ir.Libpod.LibimageRuntime().RemoveImages(ctx, []string{manifestList.ID()}, nil); len(rmErrors) > 0 {
return "", errors.Wrap(rmErrors[0], "error removing manifest after push")
}
}

Expand Down

0 comments on commit 1a9cb93

Please sign in to comment.