pub const REASON_READY: &str = "Ready";Expand description
Resource is ready and operational.
Usage:
- Use for child conditions (e.g.,
Bind9Instance-0,Pod-1) when they are ready - For the encompassing
type: Readycondition, useREASON_ALL_READYinstead
Example:
conditions:
- type: Ready # Encompassing condition
status: "True"
reason: AllReady # <- Use REASON_ALL_READY
message: "All 3 instances are ready"
- type: Bind9Instance-0 # Child condition
status: "True"
reason: Ready # <- Use REASON_READY
message: "Instance my-cluster-primary-0 is ready (2/2 pods)"