KubeErrors

NetworkUnavailable: The node's network is not correctly configured

NetworkUnavailable is set when the node's network routes have not been configured — typically by a cloud controller or network plugin that has not finished its work for that node.

Applies to: All Kubernetes versions

What it means

This condition is not set by the kubelet but by whichever component is responsible for the node's network configuration — a cloud controller manager configuring routes for the node's pod CIDR, or a network plugin doing the equivalent. While it is true, the node cannot carry pod traffic correctly, and the scheduler avoids it. On a newly joined node it is expected and clears within a minute or two. When it persists, the component that clears it has either not run or has failed, and the investigation belongs there rather than on the node itself.

Most common causes

How to diagnose it

  1. Read the condition's reason and message: kubectl describe node NODE.
  2. Check the cloud controller manager's logs for that node.
  3. Confirm the node has a pod CIDR: kubectl get node NODE -o jsonpath='{.spec.podCIDR}'.
  4. Check the cloud route table for an entry covering that CIDR.
  5. Check whether several nodes are affected, which points at permissions or a limit rather than at one node.

How to fix it

  1. Grant the cloud controller manager the permissions it needs to manage routes.
  2. Raise the route table's entry limit, or move to a CNI mode that does not require a route per node — most overlay and eBPF-based plugins avoid this limit entirely.
  3. Restart or repair the network plugin on the node.
  4. Ensure pod CIDR allocation is enabled and has address space remaining.
  5. Wait, if the node has only just joined and nothing else is wrong.

Notes

Cloud route table limits are a hard ceiling on cluster size for CNI configurations that need one route per node. Hitting it looks like a node problem and is actually a cluster architecture constraint, which is worth knowing before a cluster grows into it.

Related

Sources

Pages on this site are written with AI assistance from the primary sources listed on each page, then checked against those sources before publishing.