2017-02-21 59 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 

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