ProbeSettingsResponse

data class ProbeSettingsResponse(val failureThreshold: Int? = null, val initialDelay: String? = null, val period: String? = null, val successThreshold: Int? = null, val timeout: String? = null)

Deployment container liveness/readiness probe configuration.

Constructors

Link copied to clipboard
constructor(failureThreshold: Int? = null, initialDelay: String? = null, period: String? = null, successThreshold: Int? = null, timeout: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val failureThreshold: Int? = null

The number of failures to allow before returning an unhealthy status.

Link copied to clipboard
val initialDelay: String? = null

The delay before the first probe in ISO 8601 format.

Link copied to clipboard
val period: String? = null

The length of time between probes in ISO 8601 format.

Link copied to clipboard
val successThreshold: Int? = null

The number of successful probes before returning a healthy status.

Link copied to clipboard
val timeout: String? = null

The probe timeout in ISO 8601 format.