About Lesson
Overview:
Learn to identify and resolve common issues in Kubernetes clusters.
Common Troubleshooting Tools:
-
kubectl describe:
-
Use this command to inspect resources:
kubectl describe pod <pod-name>
-
-
kubectl logs:
-
View container logs:
kubectl logs <pod-name>
-
-
kubectl exec:
-
Access a container’s shell:
kubectl exec -it <pod-name> -- /bin/sh
-
-
kubectl get events:
-
Check cluster events:
kubectl get events
-
Debugging Node Issues:
-
Check Node Status:
kubectl get nodes
-
SSH into a Node:
-
Access the node and inspect system logs:
journalctl -xe
-
Debugging Network Issues:
-
Check Network Policies:
kubectl get networkpolicy
-
Inspect DNS Resolution:
-
Test DNS resolution within a Pod:
kubectl exec -it <pod-name> -- nslookup <service-name>
-
Activity:
Simulate a failed deployment and use kubectl
commands to troubleshoot and resolve the issue.