Exec probe configuration in Kubernetes means the kubelet runs a command inside the container to check health. The command's exit code determines success (0) or failure (non-zero). The probe runs after an initial delay and repeats periodically. If the probe fails, kubelet can restart the container. This visual trace shows the pod starting, waiting initialDelaySeconds, running the exec command, and reacting based on the exit code. Variables like exit code, probe result, and container state change step by step. Key moments clarify why exit code matters, the role of initial delay, and repeated probe runs. Quiz questions test understanding of exit codes, restart timing, and container state behavior.