error execution phase preflight: couldn't validate the identity of the API Server: Get https
2020-12-27 03:28
标签:dia pkg openssl 通过 style span selector erro execution kubernetes(k8s)DNS 服务反复重启解决: k8s.io/dns/pkg/dns/dns.go:150: Failed to list *v1.Service: Get https://10.96.0.1:443/api/v1/services?resourceVersion=0: dial tcp 10.96.0.1:443: getsockopt: no route to host 在使用 Minikube 部署 kubernetes 服务时,出现 Kube DNS 服务反复重启现象(错误如上), 这很可能是 iptables 规则乱了,我通过执行以下命令解决了,在此记录: 在kubernetse-master重新生成token: # kubeadm token create 424mp7.nkxx07p940mkl2nd # openssl x509 -pubkey -in /etc/kubernetes/pki/ca.crt | openssl rsa -pubin -outform der 2>/dev/null | openssl dgst -sha256 -hex | sed ‘s/^.* //‘ d88fb55cb1bd659023b11e61052b39bbfe99842b0636574a16c76df186fd5e0d 3.在kubernetes-slave中执行此命令 join就成功了 # kubeadm join 192.168.169.21:6443 –token 424mp7.nkxx07p940mkl2nd \ --discovery-token-ca-cert-hash sha256:d88fb55cb1bd659023b11e61052b39bbfe99842b0636574a16c76df186fd5e0d error execution phase preflight: couldn't validate the identity of the API Server: Get https://192.168.152.126:6443/.../timeout=10s: dial tcp 192.168.152.126:6443: connect: no route to host 标签:dia pkg openssl 通过 style span selector erro execution 原文地址:https://www.cnblogs.com/blogxu/p/ip.html1.回到kubernees-maser 依次输入列命令
systemctl stop kubelet
systemctl stop docker
iptables --flush
iptables -tnat --flush
systemctl start kubelet
systemctl start docker
2.重新生成新token
文章标题:error execution phase preflight: couldn't validate the identity of the API Server: Get https
文章链接:http://soscw.com/index.php/essay/38493.html