summaryrefslogtreecommitdiff
path: root/libpod/define
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-05 13:50:35 +0000
committerGitHub <noreply@github.com>2022-07-05 13:50:35 +0000
commit340eeed0cb20855f1e6d2670704cfe67df3314f6 (patch)
tree8fa91b359c7def9238c3835d55e7c00179896707 /libpod/define
parent2c9f0753da6486b7ed2ef3b37b65ae0b9ca6d3fe (diff)
parent5633ef1d15c17fa2e0249710c7591da777cd7b5e (diff)
downloadpodman-340eeed0cb20855f1e6d2670704cfe67df3314f6.tar.gz
podman-340eeed0cb20855f1e6d2670704cfe67df3314f6.tar.bz2
podman-340eeed0cb20855f1e6d2670704cfe67df3314f6.zip
Merge pull request #14626 from jakecorrenti/disable-docker-compose-health-check
Docker-compose disable healthcheck properly handled
Diffstat (limited to 'libpod/define')
-rw-r--r--libpod/define/healthchecks.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/libpod/define/healthchecks.go b/libpod/define/healthchecks.go
index bde449d30..f71274350 100644
--- a/libpod/define/healthchecks.go
+++ b/libpod/define/healthchecks.go
@@ -47,3 +47,13 @@ const (
// DefaultHealthCheckTimeout default value
DefaultHealthCheckTimeout = "30s"
)
+
+// HealthConfig.Test options
+const (
+ // HealthConfigTestNone disables healthcheck
+ HealthConfigTestNone = "NONE"
+ // HealthConfigTestCmd execs arguments directly
+ HealthConfigTestCmd = "CMD"
+ // HealthConfigTestCmdShell runs commands with the system's default shell
+ HealthConfigTestCmdShell = "CMD-SHELL"
+)