Probe கள் kubelet ஒரு container-இன் health ஐச் சரிபார்த்து முடிவின்படி செயல்பட அனுமதிக்கின்றன. மூன்று உள்ளன: 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
