본문 바로가기
K8S

[kubernetes] 에러 Unable to connect to the server: tls: failed to verify certificate:

by Rainbound-IT 2024. 12. 8.
반응형

 

 

설치후 에러

Unable to connect to the server: tls: failed to verify certificate: x509: certificate signed by unknown authority (possibly because of "crypto/rsa: verification error" while trying to verify candidate authority certificate "kubernetes")

설치후 kubectl 을 사용할경우 위와 같이 에러가 발생한다.

인증서가 제대로 설정이 안된 문제

mkdir-p $HOME/.kube
sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
sudo chown $(id -u):$(id -g) $HOME/.kube/config

 

위와 같이 하면 해결이 된다.

반응형

댓글