summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/tunnel
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-03-29 18:07:05 -0500
committerBrent Baude <bbaude@redhat.com>2020-03-29 18:48:29 -0500
commita84c006368ba5a2e43596d4da6245e843314c5c0 (patch)
tree60577f640fe3386b80cece69ee1d7738f06131be /pkg/domain/infra/tunnel
parent598bb53d46dfc85b8bcc1e3000736106f80de93e (diff)
downloadpodman-a84c006368ba5a2e43596d4da6245e843314c5c0.tar.gz
podman-a84c006368ba5a2e43596d4da6245e843314c5c0.tar.bz2
podman-a84c006368ba5a2e43596d4da6245e843314c5c0.zip
podmanv2 enable healthcheck run
run healthcheck with podmanv2 Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/domain/infra/tunnel')
-rw-r--r--pkg/domain/infra/tunnel/healthcheck.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/healthcheck.go b/pkg/domain/infra/tunnel/healthcheck.go
new file mode 100644
index 000000000..e589489b3
--- /dev/null
+++ b/pkg/domain/infra/tunnel/healthcheck.go
@@ -0,0 +1,13 @@
+package tunnel
+
+import (
+ "context"
+
+ "github.com/containers/libpod/libpod/define"
+ "github.com/containers/libpod/pkg/bindings/containers"
+ "github.com/containers/libpod/pkg/domain/entities"
+)
+
+func (ic *ContainerEngine) HealthCheckRun(ctx context.Context, nameOrId string, options entities.HealthCheckOptions) (*define.HealthCheckResults, error) {
+ return containers.RunHealthCheck(ic.ClientCxt, nameOrId)
+}