summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSankalp Rangare <sankalprangare786@gmail.com>2021-09-16 20:34:39 +0530
committerMatthew Heon <matthew.heon@pm.me>2021-09-29 16:39:29 -0400
commit5e9aa13dc03e022db91135be2cb001c35eef0d08 (patch)
treed0ec0e0bf57b1ca7643298c69c5b56b77145008c
parent6638a91e8ecbcc0d0c8079216e347fd650543682 (diff)
downloadpodman-5e9aa13dc03e022db91135be2cb001c35eef0d08.tar.gz
podman-5e9aa13dc03e022db91135be2cb001c35eef0d08.tar.bz2
podman-5e9aa13dc03e022db91135be2cb001c35eef0d08.zip
added healthcheck to ps command
Signed-off-by: Sankalp Rangare <sankalprangare786@gmail.com>
-rw-r--r--cmd/podman/containers/ps.go4
-rw-r--r--pkg/ps/ps.go7
-rw-r--r--test/e2e/healthcheck_run_test.go5
3 files changed, 16 insertions, 0 deletions
diff --git a/cmd/podman/containers/ps.go b/cmd/podman/containers/ps.go
index 2566c57de..920ad0d4a 100644
--- a/cmd/podman/containers/ps.go
+++ b/cmd/podman/containers/ps.go
@@ -375,6 +375,10 @@ func (l psReporter) State() string {
// Status is a synonym for State()
func (l psReporter) Status() string {
+ hc := l.ListContainer.Status
+ if hc != "" {
+ return l.State() + " (" + hc + ")"
+ }
return l.State()
}
diff --git a/pkg/ps/ps.go b/pkg/ps/ps.go
index 54079baa1..e65400555 100644
--- a/pkg/ps/ps.go
+++ b/pkg/ps/ps.go
@@ -241,6 +241,13 @@ func ListContainerBatch(rt *libpod.Runtime, ctr *libpod.Container, opts entities
UTS: uts,
}
}
+
+ if hc, err := ctr.HealthCheckStatus(); err == nil {
+ ps.Status = hc
+ } else {
+ logrus.Debug(err)
+ }
+
return ps, nil
}
diff --git a/test/e2e/healthcheck_run_test.go b/test/e2e/healthcheck_run_test.go
index 1445a634b..b30e8b810 100644
--- a/test/e2e/healthcheck_run_test.go
+++ b/test/e2e/healthcheck_run_test.go
@@ -80,6 +80,11 @@ var _ = Describe("Podman healthcheck run", func() {
time.Sleep(1 * time.Second)
}
Expect(exitCode).To(Equal(0))
+
+ ps := podmanTest.Podman([]string{"ps"})
+ ps.WaitWithDefaultTimeout()
+ Expect(ps).Should(Exit(0))
+ Expect(ps.OutputToString()).To(ContainSubstring("(healthy)"))
})
It("podman healthcheck that should fail", func() {