1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Healthcheck: set default retries to 3

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2016-06-03 13:28:08 +02:00
parent d349f45dcc
commit 50e470fab4
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C
4 changed files with 8 additions and 4 deletions

View file

@ -2,7 +2,7 @@ FROM debian
ADD check.sh main.sh /app/
CMD /app/main.sh
HEALTHCHECK
HEALTHCHECK --interval=5s --timeout=3s --retries=1 \
HEALTHCHECK --interval=5s --timeout=3s --retries=3 \
CMD /app/check.sh --quiet
HEALTHCHECK CMD
HEALTHCHECK CMD a b

View file

@ -2,7 +2,7 @@
(add "check.sh" "main.sh" "/app/")
(cmd "/app/main.sh")
(healthcheck)
(healthcheck ["--interval=5s" "--timeout=3s" "--retries=1"] "CMD" "/app/check.sh --quiet")
(healthcheck ["--interval=5s" "--timeout=3s" "--retries=3"] "CMD" "/app/check.sh --quiet")
(healthcheck "CMD")
(healthcheck "CMD" "a b")
(healthcheck ["--timeout=3s"] "CMD" "foo")

View file

@ -28,6 +28,10 @@ const (
// than this, the check is considered to have failed.
defaultProbeTimeout = 30 * time.Second
// Default number of consecutive failures of the health check
// for the container to be considered unhealthy.
defaultProbeRetries = 3
// Shut down a container if it becomes Unhealthy.
defaultExitOnUnhealthy = true
@ -111,7 +115,7 @@ func handleProbeResult(d *Daemon, c *container.Container, result *types.Healthch
retries := c.Config.Healthcheck.Retries
if retries <= 0 {
retries = 1 // Default if unset or set to an invalid value
retries = defaultProbeRetries
}
h := c.State.Health

View file

@ -1491,7 +1491,7 @@ The options that can appear before `CMD` are:
* `--interval=DURATION` (default: `30s`)
* `--timeout=DURATION` (default: `30s`)
* `--retries=N` (default: `1`)
* `--retries=N` (default: `3`)
The health check will first run **interval** seconds after the container is
started, and then again **interval** seconds after each previous check completes.