Kubectl cheat sheet

Jake Stocker ยท April 3, 2025

kubectl Cheat Sheet

๐Ÿ“‹ Listing Resources

kubectl get pods
kubectl get services
kubectl get deployments
kubectl get nodes
kubectl get all
  • Add -n <namespace> for a specific namespace.
  • Add -A or --all-namespaces for all namespaces.

๐Ÿ” Inspecting Resources

kubectl describe pod <pod-name>
kubectl logs <pod-name>
kubectl logs <pod-name> -c <container-name>   # for multi-container pods
kubectl get pod <pod-name> -o yaml            # raw YAML output

๐Ÿ› ๏ธ Applying & Deleting Configs

kubectl apply -f <file.yaml>      # preferred for declarative usage
kubectl create -f <file.yaml>
kubectl delete -f <file.yaml>

๐Ÿšจ Debugging & Exec

kubectl exec -it <pod-name> -- /bin/bash      # or /bin/sh
kubectl port-forward <pod-name> 8080:80       # local:remote port

๐Ÿ’ก Shortcuts

kubectl get po        # pods
kubectl get svc       # services
kubectl get deploy    # deployments

๐ŸŒ Contexts & Clusters

kubectl config get-contexts
kubectl config use-context <context-name>
kubectl config current-context

๐Ÿ“› Namespaces

kubectl get ns
kubectl get pods -n <namespace>
kubectl create ns <namespace-name>

โœ๏ธ Editing & Patching

kubectl edit deployment <deployment-name>
kubectl patch deployment <name> -p '{"spec":{"replicas":2}}'

๐Ÿ“ˆ Scaling & Rollouts

kubectl scale deployment <name> --replicas=3
kubectl rollout status deployment/<name>
kubectl rollout undo deployment/<name>

๐Ÿ”Œ Useful Plugins (via krew)

kubectl krew install ctx     # manage contexts
kubectl krew install ns      # manage namespaces

๐Ÿง  Misc Tips

kubectl get pods -o wide      # more info: IPs, nodes, etc.
watch kubectl get pods        # live-updating view

Optional Aliases (add to .bashrc, .zshrc, etc.)

alias k='kubectl'
alias kgp='kubectl get pods'