Process Flow - kubectl exec for container access
User runs kubectl exec command
kubectl sends exec request to API Server
API Server forwards request to kubelet on node
kubelet executes command inside container
Command output sent back to user terminal
This flow shows how the kubectl exec command lets you run commands inside a container by sending a request through the Kubernetes API to the node running the container.