본문 바로가기

CKA &. CKAD/Troubleshooting

Control Plane Failure

ㅁ Check Node Status

kubectl get nodes

 

kubectl get pods

 

ㅁ Check Controlplane Pods

kubectl get pods -n kube-system

 

 

service kube-apiserver status

 

 

service kube-controller-manager status

 

 

service kube-scheduler status

 

 

service kubelet status

 

 

service kube-proxy status

 

ㅁ Check Service Logs

kubectl logs kube-apiserver-master -n kube-system

 

 

sudo journalctl -u kube-apiserver

 

https://kubernetes.io/docs/tasks/debug-application-cluster/debug-cluster 

 

Troubleshoot Clusters

This doc is about cluster troubleshooting; we assume you have already ruled out your application as the root cause of the problem you are experiencing. See the application troubleshooting guide for tips on application debugging. You may also visit troubles

kubernetes.io

 

'CKA &. CKAD > Troubleshooting' 카테고리의 다른 글

kubelet 주요 이슈 확인  (0) 2021.04.08
Network Troubleshooting  (0) 2021.04.02
Practice Test - Node Failure (kubelet)  (0) 2021.04.01
Worker Node Failure  (0) 2021.04.01
Application Failure  (0) 2021.04.01