Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 2.56 KB

ContainerGroupStartupProbe.md

File metadata and controls

17 lines (14 loc) · 2.56 KB

ContainerGroupStartupProbe

Defines a probe that checks if a container application has started successfully. Startup probes help prevent applications from being prematurely marked as unhealthy during initialization. The probe can use HTTP requests, TCP connections, gRPC calls, or shell commands to determine startup status.

Properties

Name Type Required Description
failureThreshold number Number of times the probe must fail before considering the container not started
initialDelaySeconds number Number of seconds to wait after container startup before the first probe is executed
periodSeconds number How frequently (in seconds) to perform the probe
successThreshold number Minimum consecutive successes required for the probe to be considered successful
timeoutSeconds number Maximum time (in seconds) to wait for a probe response before considering it failed
exec ContainerGroupProbeExec Defines the exec action for a probe in a container group. This is used to execute a command inside a container for health checks.
grpc ContainerGroupGRpcProbe Configuration for gRPC-based health probes in container groups, used to determine container health status.
http ContainerGroupHttpProbeConfiguration Defines HTTP probe configuration for container health checks within a container group.
tcp ContainerGroupTcpProbe Configuration for a TCP probe used to check container health via network connectivity.