Condition

Conditions show the status of reconciliation progress on a given resource.

Most resource use a top-level condition type "Ready" or "Completed" to show overall status with other conditions to checkpoint each stage of reconciliation. Note that if metadata.Generation does not equal status.ObservedGeneration, the conditions shown may not be relevant for the current spec.

JSON representation
{
  "type": string,
  "status": string,
  "reason": string,
  "message": string,
  "lastTransitionTime": string,
  "severity": string
}
Fields
type

string

type is used to communicate the status of the reconciliation process. Types common to all resources include: * "Ready" or "Completed": True when the Resource is ready.

status

string

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

reason

string

Optional. One-word CamelCase reason for the condition's last transition.

These are intended to be stable, unique values which the client may use to trigger error handling logic, whereas messages which may be changed later by the server.

message

string

Optional. Human readable message indicating details about the current status.

lastTransitionTime

string (Timestamp format)

Optional. Last time the condition transitioned from one status to another.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

severity

string

Optional. How to interpret this condition. One of Error, Warning, or Info.

Conditions of severity Info do not contribute to resource readiness.