Probe हरूले kubelet लाई container को स्वास्थ्य जाँच्न र नतिजामा कदम चाल्न दिन्छन्। तीन वटा छन्: liveness (यो जीवित छ, वा restart गर्नुपर्छ?), readiness (यो traffic लिन तयार छ?), र startup (यसले boot सकिसक्यो?)। प्रत्येकले फरक प्रश्नको जवाफ दिन्छ।
तीन probe एक नजरमा
LIVENESS → "Is the app stuck/deadlocked?" FAIL → kubelet RESTARTS the container
READINESS → "Can it serve traffic right now?" FAIL → Pod removed from Service endpoints
(NOT restarted)
STARTUP → "Has the slow boot finished?" runs FIRST; while it runs, liveness &
readiness are held off
