Learn to create, inspect, and manage Pods - the smallest deployable units in Kubernetes. Understand the pod lifecycle and basic troubleshooting.
Use kubectl run to quickly create a pod from the command line.
kubectl run nginx-pod --image=nginx:alpinekubectl get podskubectl get pods -o wide'kubectl run' creates a pod with the specified name and container image. Pods are the smallest deployable units in Kubernetes - typically one container, sometimes more.
You'll see the pod creation confirmation, then status showing ContainerCreating β Running. The -o wide flag shows the node and IP address.