LastProbeTime
LastProbeTime is a timestamp field in the Kubernetes API used within PodCondition to record the most recent time a probe was performed for a pod condition. It is part of the core/v1 PodCondition structure and is typically represented as a metav1.Time value. The field is optional and may be empty if no probe has been performed for the condition.
It is distinct from the related LastTransitionTime field, which records when the condition last changed its
Probing is carried out by liveness and readiness probes defined in a pod's container spec. Each probe
Why it matters: LastProbeTime helps operators and tooling assess how fresh the last health or readiness check