GetAppTemplateContainerReadinessProbe

data class GetAppTemplateContainerReadinessProbe(val failureCountThreshold: Int, val headers: List<GetAppTemplateContainerReadinessProbeHeader>, val host: String, val intervalSeconds: Int, val path: String, val port: Int, val successCountThreshold: Int, val timeout: Int, val transport: String)

Constructors

Link copied to clipboard
constructor(failureCountThreshold: Int, headers: List<GetAppTemplateContainerReadinessProbeHeader>, host: String, intervalSeconds: Int, path: String, port: Int, successCountThreshold: Int, timeout: Int, transport: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The number of consecutive failures required to consider this probe as failed. Possible values are between 1 and 10. Defaults to 3.

Link copied to clipboard

A header block as detailed below.

Link copied to clipboard

The value for the host header which should be sent with this probe. If unspecified, the IP Address of the Pod is used as the host header. Setting a value for Host in headers can be used to override this for HTTP and HTTPS type probes.

Link copied to clipboard

How often, in seconds, the probe should run. Possible values are between 1 and 240. Defaults to 10

Link copied to clipboard

The path in the container at which to mount this volume.

Link copied to clipboard
val port: Int

The port number on which to connect. Possible values are between 1 and 65535.

Link copied to clipboard

The number of consecutive successful responses required to consider this probe as successful. Possible values are between 1 and 10. Defaults to 3.

Link copied to clipboard

Time in seconds after which the probe times out. Possible values are in the range 1 - 240. Defaults to 1.

Link copied to clipboard

The transport method for the Ingress. Possible values include auto, http, and http2. Defaults to auto