Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 스위치
- Vlan
- ripng
- crontab
- GLBP
- vrrp
- 라우터
- rip
- tunneling
- CKA
- eigrp
- Chrony
- ACL
- 헤더
- Etherchannel
- 장비
- ospfv3
- OSPF
- 명령어
- OSI 7 layer
- Redistribute
- NAT
- eigrpv2
- stp
- Inter VLAN
- ipv6
- DHCP
Archives
- Today
- Total
Net Eng
[CKA] - Kubernetes Troubleshooting (2) 본문
[선수 작업]
ssh node2 'sudo systemctl disable --now docker' >/dev/null 2>&1
[문제]
- A kubernetes worker node, named node2 is in state NotReady.
- Investigate why this is the case, and perform any appropriate steps bring the node to a Ready state, ensuring that any changes are made permanent.
[풀이]
kubectl get nodes
* node 확인
ssh node2
sudo -i
* node2으로 접속
systemctl status docker
* docker 상태 확인
systemctl enable --now docker
* docker 상태 enable
kubectl get nodes
* node 상태 확인
'Cloud > Kubernetes' 카테고리의 다른 글
[CKA] - Kubernetes Troubleshooting (1) (0) | 2024.01.23 |
---|---|
[CKA] - Kubernetes Upgrade (0) | 2024.01.23 |
[CKA] - Ingress 구성 (0) | 2024.01.23 |
[CKA] - Check Resource Information (1) | 2024.01.23 |
[CKA] - Persistent Volume Claim 사용하는 Pod 운영 (0) | 2024.01.22 |