diff options
author | Sankalp Rangare <sankalprangare786@gmail.com> | 2021-09-16 20:34:39 +0530 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2021-09-29 16:39:29 -0400 |
commit | 5e9aa13dc03e022db91135be2cb001c35eef0d08 (patch) | |
tree | d0ec0e0bf57b1ca7643298c69c5b56b77145008c /pkg | |
parent | 6638a91e8ecbcc0d0c8079216e347fd650543682 (diff) | |
download | podman-5e9aa13dc03e022db91135be2cb001c35eef0d08.tar.gz podman-5e9aa13dc03e022db91135be2cb001c35eef0d08.tar.bz2 podman-5e9aa13dc03e022db91135be2cb001c35eef0d08.zip |
added healthcheck to ps command
Signed-off-by: Sankalp Rangare <sankalprangare786@gmail.com>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/ps/ps.go | 7 |
1 files changed, 7 insertions, 0 deletions
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 } |