GoWiki
Index
Sections
Search
Login
k8s
Cheatsheet
# Cheatsheet ## Cleanup Orphaned Pod Kubelet example log: `orphaned pod "95ad2de9-9a62-47b8-92c5-6df7b9c07482" found, but volume paths are still present on disk` Issue: https://github.com/kubernetes/kubernetes/issues/60987 On the affected node: ``` systemctl stop kubelet docker rm -rf /var/lib/kubelet/pods/95ad2de9-9a62-47b8-92c5-6df7b9c07482 systemctl start kubelet docker ``` ## NTP Clock Skew Sync the clock on all nodes in the cluster: ``` systemctl stop ntp; ntpd -gq; systemctl start ntp ```