我尝试安装Rancher v1.3.1并启用Kubernetes Environment,安装似乎正常,但是当我导航至仪表板但结果为空白页时,我每次检查2部署:kubernetes-dashboard和tiller-deploy都使用日志重新启动:
初始化与Kubernetes apiserver的连接时出错。这很可能意味着群集配置错误(例如,群集具有无效的apiserver证书或服务帐户配置),或者--apiserver-host参数指向不存在的服务器。原因:获取https://10.43.0.1:443/version:拨打tcp 10.43.0.1:443:I/O超时
我不知道为什么,请帮帮我
我不知道为什么公开10.43.0.1:443的kubernetes服务与其他人(kube-system)属于不同的命名空间(默认)
最佳答案
请通过在部署中编辑以下内容,尝试从使用https://10.43.0.1:443切换到http://10.43.0.1。
args:
- --auto-generate-certificates
- --namespace=kubernetes-dashboard
# Uncomment the following line to manually specify Kubernetes API server Host
# If not specified, Dashboard will attempt to auto discover the API server and connect
# to it. Uncomment only if the default does not work.
- --apiserver-host=http://10.43.0.1
关于kubernetes - Rancher v1.3.1 Kubernetes仪表板不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41741542/