ContainerProbeResponse

data class ContainerProbeResponse(val exec: ContainerExecResponse? = null, val failureThreshold: Int? = null, val httpGet: ContainerHttpGetResponse? = null, val initialDelaySeconds: Int? = null, val periodSeconds: Int? = null, val successThreshold: Int? = null, val timeoutSeconds: Int? = null)

The container probe, for liveness or readiness

Constructors

Link copied to clipboard
constructor(exec: ContainerExecResponse? = null, failureThreshold: Int? = null, httpGet: ContainerHttpGetResponse? = null, initialDelaySeconds: Int? = null, periodSeconds: Int? = null, successThreshold: Int? = null, timeoutSeconds: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The execution command to probe

Link copied to clipboard
val failureThreshold: Int? = null

The failure threshold.

Link copied to clipboard

The Http Get settings to probe

Link copied to clipboard

The initial delay seconds.

Link copied to clipboard
val periodSeconds: Int? = null

The period seconds.

Link copied to clipboard
val successThreshold: Int? = null

The success threshold.

Link copied to clipboard
val timeoutSeconds: Int? = null

The timeout seconds.