Fractal Techware

Alert runbooks /

KubeNodeNotReady

Node is not ready. Free rule (MIT): the complete runbook and rule definition are below.

   
Severity warning
Pending (for:) 15m (warning)
Domain Kubernetes nodes & capacity
Requires kube-state-metrics v2.x
Rule file rules/kubernetes-nodes.rules.yml (group ftw.kubernetes-nodes.alerts)

Meaning

The kubelet on the node has not reported Ready=True for the whole pending period.

Impact

No new pods are scheduled on the node. After the eviction timeout (default 5 minutes) its pods are evicted and rescheduled, which can overload the remaining nodes.

Diagnosis

Mitigation

Escalation

Owned by the platform / cluster team. Involve the cloud provider when nodes fail at the infrastructure level.

Rule definition

From rules/kubernetes-nodes.rules.yml in the free repository (MIT). Unit tests for it are in tests/.

- alert: KubeNodeNotReady
  expr: kube_node_status_condition{job="kube-state-metrics", condition="Ready", status="true"} == 0
  for: 15m
  labels:
    severity: warning
  annotations:
    summary: Node is not ready.
    description: Node {{ $labels.node }} has not been Ready for more than 15m.
    runbook_url: runbooks/kubernetes-nodes/KubeNodeNotReady.md