Kubernetes
🛠 Kubernetes Pod Debugging 🛠
🔍 Verify the Obvious ▸ kubectl get pods -o wide → Check if the pod is crashed or pending. ▸ kubectl describe pod <pod-name> → Inspect restart count, status, and errors. ▸ kubectl get events --sort-by='.lastTimestamp' → Look for cluster-wide issues. 📜 Hunt Through Pod Logs ▹ kubectl logs <pod-name> --previous → Logs