summaryrefslogtreecommitdiff
path: root/libpod/image
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-09-09 12:15:46 -0400
committerGitHub <noreply@github.com>2020-09-09 12:15:46 -0400
commit49cb0edd651848d1e731b77412ed9d47a34fe0a7 (patch)
tree0ae031547c8fb6152f39e3e8339e25fbaf66e34f /libpod/image
parent5a09fd8f2b8e624a8d4155fd4fc89f51e544e2ca (diff)
parent581afbb86f441c94c6dd49fe93dff935de7af340 (diff)
downloadpodman-49cb0edd651848d1e731b77412ed9d47a34fe0a7.tar.gz
podman-49cb0edd651848d1e731b77412ed9d47a34fe0a7.tar.bz2
podman-49cb0edd651848d1e731b77412ed9d47a34fe0a7.zip
Merge pull request #7290 from rhatdan/external
Show c/storage (Buildah/CRI-O) containers in ps
Diffstat (limited to 'libpod/image')
-rw-r--r--libpod/image/image.go8
-rw-r--r--libpod/image/prune.go2
2 files changed, 9 insertions, 1 deletions
diff --git a/libpod/image/image.go b/libpod/image/image.go
index 9dd04e7c7..850a48eae 100644
--- a/libpod/image/image.go
+++ b/libpod/image/image.go
@@ -636,6 +636,14 @@ func (ir *Runtime) getImage(image string) (*storage.Image, error) {
return img, nil
}
+func (ir *Runtime) ImageNames(id string) ([]string, error) {
+ myImage, err := ir.getImage(id)
+ if err != nil {
+ return nil, errors.Wrapf(err, "error getting image %s ", id)
+ }
+ return myImage.Names, nil
+}
+
// GetImages retrieves all images present in storage
func (ir *Runtime) GetImages() ([]*Image, error) {
return ir.getImages(false)
diff --git a/libpod/image/prune.go b/libpod/image/prune.go
index 5a9ca5d8e..fcc65fb03 100644
--- a/libpod/image/prune.go
+++ b/libpod/image/prune.go
@@ -137,7 +137,7 @@ func (ir *Runtime) PruneImages(ctx context.Context, all bool, filter []string) (
}
if err := p.Remove(ctx, true); err != nil {
if errors.Cause(err) == storage.ErrImageUsedByContainer {
- logrus.Warnf("Failed to prune image %s as it is in use: %v", p.ID(), err)
+ logrus.Warnf("Failed to prune image %s as it is in use: %v.\nA container associated with containers/storage i.e. Buildah, CRI-O, etc., maybe associated with this image.\nUsing the rmi command with the --force option will remove the container and image, but may cause failures for other dependent systems.", p.ID(), err)
continue
}
return nil, errors.Wrap(err, "failed to prune image")