1 参考
K8S 1.18.2安装dashboard(基于kubernetes-dashboard 2.0.0版本)
按上述教程配置完后访问会提示以下界面
用火狐浏览器,手动输入地址https://192.168.2.3:30001,然后会提示以下界面
点击“高级”,点击“接受风险并继续”,就可以了。
2 常用命令
查看暴露端口,似乎看不到。。。
kubectl get svc -n kube-system
访问
http://192.168.2.3:30000
查看token
kubectl -n kubernetes-dashboard describe secret $(kubectl -n kubernetes-dashboard get secret | grep dashboard-admin | awk '{print $1}')
卸载dashboard
kubectl delete -f https://raw.githubusercontent.com/kubernetes/dashboard/master/aio/deploy/recommended.yaml
kubectl delete -f kubernetes-dashboard.yaml
查看ClusterRoleBinding
kubectl get ClusterRoleBinding
删除ClusterRoleBinding
kubectl delete ClusterRoleBinding <名称>
2 其他参考
- Kubernetes Dashboard 安装与使用
-
安装Kubernetes Dashboard
- 只能内网访问
-
k8s-dashboard的部署与卸载
- docker安装,没有试过
- k8s]kubernetes安装dashboard步骤
- k8s指南 - dashboard
-
通过yaml安装,可外网访问
- 不用token,启动后可直接访问
- 安装完后有问题,启动后一直重定向
- k8s群集的三种的Web-UI界面部署(dashboard、scope、Prometheus)
- CentOS7环境部署kubenetes1.12版本五部曲之四:安装dashboard