Kubernetes stuck on ContainerCreating
Solution 1:
kubectl describe pods
will list some (probably most) of the events associated with the pod, including pulling of images, starting of containers.
Solution 2:
More info could be provided in the events.
kubectl get events --all-namespaces --sort-by='.metadata.creationTimestamp'
However do note that sorting events might not work correctly due to this bug: https://github.com/kubernetes/kubernetes/issues/29838
In my case I had an event relating to a pod:
default 13s Warning FailedMount Pod Unable to mount volumes for pod "restore-db-123-1-5f24s_default(9b7df264-2976-11ea-bb8f-42010a9a002c)": timeout expired waiting for volumes to attach or mount for pod "default"/"restore-db-123-1-5f24s". list of unmounted volumes=[nfsv]. list of unattached volumes=[nfsv default-token-hxrng]