NodeCondition

data class NodeCondition(val lastHeartbeatTime: String? = null, val lastTransitionTime: String? = null, val message: String? = null, val reason: String? = null, val status: String, val type: String)

NodeCondition contains condition information for a node.

Constructors

Link copied to clipboard
constructor(lastHeartbeatTime: String? = null, lastTransitionTime: String? = null, message: String? = null, reason: String? = null, status: String, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Last time we got an update on a given condition.

Link copied to clipboard

Last time the condition transit from one status to another.

Link copied to clipboard
val message: String? = null

Human readable message indicating details about last transition.

Link copied to clipboard
val reason: String? = null

(brief) reason for the condition's last transition.

Link copied to clipboard

Status of the condition, one of True, False, Unknown.

Link copied to clipboard

Type of node condition.