728x90
반응형
- 쿠버네티스 "coredns CrashLoopBackOff", "10.96.0.1:443: connect: no route to host" 에러 (firewalld)
아래와 같이 corends CrashLoopBackOff가 발생하며 Pod Log를 확인했을때 "10.96.0.1:443: connect: no route to host" 에러가 발생할 경우 firewalld가 실행중인것은 아닌지 확인해볼 필요성이 있습니다.
저의 경우 아래 명령들을 통해 에러가 해결되었습니다.
systemctl stop firewalld
systemctl stop kubelet
systemctl stop docker
iptables --flush
iptables -tnat --flush
systemctl start kubelet
systemctl start docker
systemctl start firewalld
출처: https://nirsa.tistory.com/293 [Nirsa:티스토리]
728x90
반응형
'IT > CLOUD(AWS,Azure,GCP,Docker)' 카테고리의 다른 글
Helm 설치하기 (0) | 2022.06.20 |
---|---|
쿠버네티스(kubernetes) kubelet.go node not found #NotReady (0) | 2022.06.19 |
[Kubernetes] 쿠버네티스 클러스터 구축 (0) | 2022.06.19 |
Kubernetes #3. 쿠버네티스 Unable to connect to the server: x509 에러 (0) | 2022.06.19 |
Kubeadm unknown service runtime.v1alpha2.RuntimeService (0) | 2022.06.19 |