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/infra/tunnel/pods.go | |
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/infra/tunnel/pods.go')
-rw-r--r-- | pkg/domain/infra/tunnel/pods.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/pods.go b/pkg/domain/infra/tunnel/pods.go new file mode 100644 index 000000000..500069d51 --- /dev/null +++ b/pkg/domain/infra/tunnel/pods.go @@ -0,0 +1,13 @@ +package tunnel + +import ( + "context" + + "github.com/containers/libpod/pkg/bindings/pods" + "github.com/containers/libpod/pkg/domain/entities" +) + +func (ic *ContainerEngine) PodExists(ctx context.Context, nameOrId string) (*entities.BoolReport, error) { + exists, err := pods.Exists(ic.ClientCxt, nameOrId) + return &entities.BoolReport{Value: exists}, err +} |