Nifty trick to look at logs from a dead container
Use this runbook when you need to figure out what a pod/container crashed and restarted
List all pods in the kube-system namespace.
kubectl get po -n <namespace>
Retrieve logs from the previous instance of the storage-provisioner pod in the kube-system namespace.
kubectl logs -n <namespace> <pod> --previous