Kubernetes
Study Kubernetes
Container orchestration, deployments, services, networking
Topics
Core Concepts
Kubernetes is a declarative orchestrator: you tell the API server "I want N replicas of this Pod with these resources", and the control plane (scheduler, controller-manager, etcd) plus per-node agents (kubelet, kube-proxy) drive reality…
Troubleshooting
Pod debugging follows a fixed flow: kubectl get/describe to read status and events, kubectl logs (plus --previous after a crash) to see what the container said, and kubectl exec or kubectl debug for a shell. The pod-status table —…