diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-05-20 04:37:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-20 04:37:19 -0400 |
commit | cb937f4aa89abc3758bcc761839d3044d194b936 (patch) | |
tree | 747dba2f210f1d2586550617452300eac04e835c /pkg/domain/entities/engine_image.go | |
parent | 8bc39f4a90a658e92305369cc2628e2a65874506 (diff) | |
parent | 2b89b241461c6baba777894f09a75df17dd05741 (diff) | |
download | podman-cb937f4aa89abc3758bcc761839d3044d194b936.tar.gz podman-cb937f4aa89abc3758bcc761839d3044d194b936.tar.bz2 podman-cb937f4aa89abc3758bcc761839d3044d194b936.zip |
Merge pull request #10235 from rhatdan/manifest
Add support for podman manifest rm command
Diffstat (limited to 'pkg/domain/entities/engine_image.go')
-rw-r--r-- | pkg/domain/entities/engine_image.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/engine_image.go b/pkg/domain/entities/engine_image.go index d841ecd6e..1b2de5d5e 100644 --- a/pkg/domain/entities/engine_image.go +++ b/pkg/domain/entities/engine_image.go @@ -37,6 +37,7 @@ type ImageEngine interface { ManifestAdd(ctx context.Context, opts ManifestAddOptions) (string, error) ManifestAnnotate(ctx context.Context, names []string, opts ManifestAnnotateOptions) (string, error) ManifestRemove(ctx context.Context, names []string) (string, error) + ManifestRm(ctx context.Context, names []string) (*ImageRemoveReport, []error) ManifestPush(ctx context.Context, name, destination string, imagePushOpts ImagePushOptions) (string, error) Sign(ctx context.Context, names []string, options SignOptions) (*SignReport, error) } |