// kubelet 상태 확인1) systemctl status kubelet // systemctl (restart or start) kubelet2) journalctl -u kubelet | tail -10// 상태 확인 -> 상세 로그 확인 -> 10분 구글링 -> VM 재기동 -> Cluster 재설치 -> 답을 찾을 때 까지 구글링// containerd 상태 확인1) systemctl status containerd2) journalctl -u containerd | tail -10// 노드 상태 확인1) kubectl get nodes -o wide2) kubectl describe node k8s-master// Pod 상태 확인1) kubectl get pods -A -o ..