diff options
author | Paul Holzinger <paul.holzinger@web.de> | 2021-01-22 14:09:55 +0100 |
---|---|---|
committer | Paul Holzinger <paul.holzinger@web.de> | 2021-01-22 20:19:13 +0100 |
commit | 6e6a38b4168ed7a528614f6499783243a8668395 (patch) | |
tree | 4389f13d6407233e77c84d3557f63bc0fdbc51b2 /pkg/domain/infra/tunnel/manifest.go | |
parent | f02aba659447ea9198851231d7f11a8bfdfe69ba (diff) | |
download | podman-6e6a38b4168ed7a528614f6499783243a8668395.tar.gz podman-6e6a38b4168ed7a528614f6499783243a8668395.tar.bz2 podman-6e6a38b4168ed7a528614f6499783243a8668395.zip |
podman manifest exists
Add podman manifest exists command with remote support.
Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'pkg/domain/infra/tunnel/manifest.go')
-rw-r--r-- | pkg/domain/infra/tunnel/manifest.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/manifest.go b/pkg/domain/infra/tunnel/manifest.go index 22ca44165..c12ba0045 100644 --- a/pkg/domain/infra/tunnel/manifest.go +++ b/pkg/domain/infra/tunnel/manifest.go @@ -23,6 +23,15 @@ func (ir *ImageEngine) ManifestCreate(ctx context.Context, names, images []strin return imageID, err } +// ManifestExists checks if a manifest list with the given name exists +func (ir *ImageEngine) ManifestExists(ctx context.Context, name string) (*entities.BoolReport, error) { + exists, err := manifests.Exists(ir.ClientCtx, name, nil) + if err != nil { + return nil, err + } + return &entities.BoolReport{Value: exists}, nil +} + // ManifestInspect returns contents of manifest list with given name func (ir *ImageEngine) ManifestInspect(ctx context.Context, name string) ([]byte, error) { list, err := manifests.Inspect(ir.ClientCtx, name, nil) |