Practice inspecting pods, services, nodes, and general namespace resources in Kubernetes.
Build a clear first-response workflow for reading cluster state.
Get a broad overview of resources in the current namespace.
Command
kubectl get allExpected Result
You should see deployments, replicasets, pods, and services if they exist.
Inspect how workloads are exposed in the namespace.
Command
kubectl get svcExpected Result
You should see service names, types, cluster IPs, and ports.
Check the readiness and names of cluster nodes.
Command
kubectl get nodesExpected Result
You should see node names and Ready status.
Display node assignment and IP information for pods.
Command
kubectl get pods -o wideExpected Result
You should see pod IPs and node placement.
Inspect pod conditions, events, and recent failures.
Command
kubectl describe pod <pod-name>Expected Result
You should see detailed events, container information, and status details.
You can inspect basic cluster resources with confidence.
You understand how get and describe complement each other in Kubernetes.