REASON_READY

Constant REASON_READY 

Source
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: Ready condition, use REASON_ALL_READY instead

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)"