π ~1 min read
Table of contents
Symptom & Impact
Node becomes NotReady and workloads cannot schedule or recover.
Environment & Reproduction
Occurs after runtime upgrades or config file edits.
sudo systemctl status kubelet && kubectl get nodes
Root Cause Analysis
kubelet and containerd cgroup settings diverge, causing runtime initialization failures.
Quick Triage
Check kubelet journal and runtime endpoint status.
sudo journalctl -u kubelet --since -1h
Step-by-Step Diagnosis
Inspect containerd config and kubelet args for cgroup alignment.
sudo grep -R SystemdCgroup /etc/containerd/config.toml /var/lib/kubelet/config.yaml

Solution – Primary Fix
Enable `SystemdCgroup = true` in containerd and restart runtime and kubelet.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo sed -i 's/SystemdCgroup = false/SystemdCgroup = true/' /etc/containerd/config.toml && sudo systemctl restart containerd kubelet

Solution – Alternative Approaches
Rejoin node to cluster if local kubelet state is irrecoverably inconsistent.
Verification & Acceptance Criteria
Node returns to Ready and pods schedule successfully.
Rollback Plan
Revert runtime config changes and restart services.
Prevention & Hardening
Use configuration management to enforce consistent kubelet/runtime settings.
Related Errors & Cross-Refs
Related to CRI socket mismatch and paused image pull failures.
Related tutorial: View the step-by-step tutorial for Ubuntu 24.04 LTS.
View all Ubuntu 24.04 LTS tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Ubuntu Kubernetes node runtime and kubelet troubleshooting docs.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.