Created by: ston1th 2020-01-17 18:22:44
Updated by: ston1th 2020-05-03 15:20:29
Visibility: Public

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