본문 바로가기
cloud/k8s(문제풀이)

[따배쿠CKA] 24.Kubernetes Troubleshooting(2)

by mozi2 2022. 8. 17.
반응형

* 트러블 슈팅 문제 해결

- 서비스가 운영되지 않아요, replicas 개수가 확장되지 않아요 등등등

- 단계별로 잘 정리해서 해결해야함

 

* 같은 환경 구성이 어려워 강의를 통해 문제만 정리 

A kubernetes worker node, named hk8s-w2 is in state NotReady.
Investigate why this is the case, and perform any appropriate stes to bring the node to a Ready state, ensuring that any changes are made permanent.

1. 상태 확인하기

kubectl get nodes 

2. 시스템 환경점검

: 현재 hk8s-2 의 워커노드가 작동되지 않기 떄문에 hk8s-2의 노드 환경으로 접속해서 본다.

ssh hk8s-2 
sudo -i 

3. docker running ?

 : 작동중이지 않음

systemctl status docker

4. docker 작동시키기

systemctl enable --now docker
systemctl status docker

5. kubelet running ?

systemctl status kubelet 

6. nodes 확인 

 : kube-proxy 작동 확인 (각 master, worker 노드별 작동 확인)

exit
exit

[console]
kubectl get nodes
kubectl get pods -n kube-system -o wide

6. kube-porxy running?

 : calico 작동확인

kubectl get pods -n kube-system -o wide

 

* 본 게시글은 "TTABAE-LEARN" 을 보고 정리한 내용입니다.

728x90
반응형