Kubernetes Fundamentals - From Docker Compose to Kubernetes
Troubleshooting Guide
Pod not starting:
$ kubectl describe pod <name>
$ kubectl logs <name>
$ kubectl get events --sort-by=.metadata.creationTimestamp
Service not accessible:
$ kubectl get svc
$ kubectl get endpoints <service>
$ kubectl describe svc <service>
Storage issues:
$ kubectl get pv,pvc
$ kubectl describe pvc <name>