Process Flow - Creating Pods with kubectl
Write Pod YAML file
Run kubectl apply -f pod.yaml
kubectl sends request to API Server
API Server validates and stores Pod spec
Scheduler assigns Pod to a Node
Kubelet on Node creates container
Pod status changes to Running
kubectl get pods shows Pod status
This flow shows how writing a Pod definition, applying it with kubectl, and Kubernetes components work together to create and run a Pod.