diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-03-21 12:25:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-21 12:25:30 +0100 |
commit | e1f2851976fb66b92779fcb45a2ae2117923ca4e (patch) | |
tree | 4f789d462153e21eb572267705b9b23d388119b1 /pkg/domain/infra/tunnel/pods.go | |
parent | 77187daf07281854306f94452ca2bccad6215b7e (diff) | |
parent | 0feec5de985ba2117fffb61b50b08563e67725dc (diff) | |
download | podman-e1f2851976fb66b92779fcb45a2ae2117923ca4e.tar.gz podman-e1f2851976fb66b92779fcb45a2ae2117923ca4e.tar.bz2 podman-e1f2851976fb66b92779fcb45a2ae2117923ca4e.zip |
Merge pull request #5578 from baude/v2podexists
podmanv2 pod exists
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 +} |