A pod is stuck in 'Pending' state. You run 'kubectl describe pod my-pod' and see the event: '0/4 nodes are available: 4 node(s) had taint {node.kubernetes.io/unreachable: }, that the pod didn't tolerate'. What is the likely cause?
The taint node.kubernetes.io/unreachable is automatically added by the node controller when a node becomes unreachable. The pod does not tolerate this taint, so it cannot be scheduled.
Why this answer
The taint 'node.kubernetes.io/unreachable' indicates nodes are unreachable, often due to node failure or network issues.