static HealthCheck.Builder |
HealthCheck.builder() |
|
HealthCheck.Builder |
HealthCheck.Builder.command(String... command) |
A string array representing the command that the container runs to determine if it is healthy.
|
HealthCheck.Builder |
HealthCheck.Builder.command(Collection<String> command) |
A string array representing the command that the container runs to determine if it is healthy.
|
HealthCheck.Builder |
HealthCheck.Builder.interval(Integer interval) |
The time period in seconds between each health check execution.
|
HealthCheck.Builder |
HealthCheck.Builder.retries(Integer retries) |
The number of times to retry a failed health check before the container is considered unhealthy.
|
HealthCheck.Builder |
HealthCheck.Builder.startPeriod(Integer startPeriod) |
The optional grace period to provide containers time to bootstrap before failed health checks count towards
the maximum number of retries.
|
HealthCheck.Builder |
HealthCheck.Builder.timeout(Integer timeout) |
The time period in seconds to wait for a health check to succeed before it is considered a failure.
|
HealthCheck.Builder |
HealthCheck.toBuilder() |
|