Kubernetes Fundamentals - kubectl and Pods
This is Chapter 2 of the Kubernetes Fundamentals series. Installing kubectl Install kubectl before a local cluster tool like minikube - minikube depends on it being present. kubectl reference kubectl Quick Reference Install kubectl - official install steps per OS Confirm kubectl can reach the cluster: kubectl cluster-info List the nodes in it: kubectl get nodes Check a node’s details - capacity, conditions, and what’s running on it: kubectl describe nodes Output formatting kubectl [command] [TYPE] [NAME] -o <format> controls how a command’s output is rendered: ...