diff options
author | Brent Baude <bbaude@redhat.com> | 2020-03-20 17:06:27 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-03-20 17:07:57 -0500 |
commit | 0feec5de985ba2117fffb61b50b08563e67725dc (patch) | |
tree | ad2a08dae3963c8c9a2ebb80da7c5fdb5f55f2b1 /pkg/domain/entities | |
parent | 7a095af92a6a39845b1c362222b23632f3e17001 (diff) | |
download | podman-0feec5de985ba2117fffb61b50b08563e67725dc.tar.gz podman-0feec5de985ba2117fffb61b50b08563e67725dc.tar.bz2 podman-0feec5de985ba2117fffb61b50b08563e67725dc.zip |
podmanv2 pod exists
add pod exists for podman v2
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/engine_container.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/engine_container.go b/pkg/domain/entities/engine_container.go index aa2ceb630..e3c3b2daf 100644 --- a/pkg/domain/entities/engine_container.go +++ b/pkg/domain/entities/engine_container.go @@ -10,6 +10,7 @@ type ContainerEngine interface { ContainerExists(ctx context.Context, nameOrId string) (*BoolReport, error) ContainerWait(ctx context.Context, namesOrIds []string, options WaitOptions) ([]WaitReport, error) PodDelete(ctx context.Context, opts PodPruneOptions) (*PodDeleteReport, error) + PodExists(ctx context.Context, nameOrId string) (*BoolReport, error) PodPrune(ctx context.Context) (*PodPruneReport, error) VolumeDelete(ctx context.Context, opts VolumeDeleteOptions) (*VolumeDeleteReport, error) VolumePrune(ctx context.Context) (*VolumePruneReport, error) |