Container Group Container Readiness Probe
data class ContainerGroupContainerReadinessProbe(val execs: List<ContainerGroupContainerReadinessProbeExec>? = null, val failureThreshold: Int? = null, val httpGets: List<ContainerGroupContainerReadinessProbeHttpGet>? = null, val initialDelaySeconds: Int? = null, val periodSeconds: Int? = null, val successThreshold: Int? = null, val tcpSockets: List<ContainerGroupContainerReadinessProbeTcpSocket>? = null, val timeoutSeconds: Int? = null)
Constructors
Link copied to clipboard
constructor(execs: List<ContainerGroupContainerReadinessProbeExec>? = null, failureThreshold: Int? = null, httpGets: List<ContainerGroupContainerReadinessProbeHttpGet>? = null, initialDelaySeconds: Int? = null, periodSeconds: Int? = null, successThreshold: Int? = null, tcpSockets: List<ContainerGroupContainerReadinessProbeTcpSocket>? = null, timeoutSeconds: Int? = null)
Properties
Link copied to clipboard
Health check using command line method. See exec
below.
Link copied to clipboard
Threshold for the number of checks that are determined to have failed since the last successful check (must be consecutive failures), default is 3.
Link copied to clipboard
Health check using HTTP request method. See http_get
below.
Link copied to clipboard
Check the time to start execution, calculated from the completion of container startup.
Link copied to clipboard
Buffer time for the program to handle operations before closing.
Link copied to clipboard
The check count threshold for re-identifying successful checks since the last failed check (must be consecutive successes), default is 1. Current must be 1.
Link copied to clipboard
Health check using TCP socket method. See tcp_socket
below.
Link copied to clipboard
Check the timeout, the default is 1 second, the minimum is 1 second.