2017-02-21 60 views
0

我在用kubeadm安装kubernetes后创建了仪表板。Kubernetes仪表板无法启动

kubectl create -f https://rawgit.com/kubernetes/dashboard/master/src/deploy/kubernetes-dashboard.yaml 

稍等片刻,吊舱坠毁,如:

kubectl get pods --all-namespaces 
kubernetes-dashboard-3203831700-wq0v4 0/1  CrashLoopBackOff 3   3m 

我查荚日志:

kubectl logs -f kubernetes-dashboard-3203831700-wq0v4 -n kube-system      Using HTTP port: 9090 
Creating API server client for https://10.96.0.1:443 
Error while initializing connection to Kubernetes apiserver. This most likely means that the cluster is misconfigured (e.g., it has invalid apiserver certificates or service accounts configuration) or the --apiserver-host param points to a server that does not exist. Reason: Get https://10.96.0.1:443/version: dial tcp 10.96.0.1:443: i/o timeout 
Refer to the troubleshooting guide for more information: https://github.com/kubernetes/dashboard/blob/master/docs/user-guide/troubleshooting.md 

但是我试了一下码的手动,该URL的工作原理:

# curl https://10.96.0.1:443/version 
curl: (35) Peer reports incompatible or unsupported protocol version. 

有没有人遇到过之前的问题?或帮助我?

回答

0

我执行以下命令:

rm -rf ~/.kube 

现在,它的工作原理。仍然有点奇怪:-(