所有分类
  • 所有分类
  • 未分类

Ubuntu安装K8S的dashboard(管理页面)

简介

本文介绍Ubuntu安装k8s的dashboard(管理页面)的方法。

Dashboard的作用有:便捷操作、监控、分析、概览。

相关网址

官网地址:https://kubernetes.io/zh-cn/docs/tasks/access-application-cluster/web-ui-dashboard/

github:https://github.com/kubernetes/dashboard/releases

1.安装dashboard

先去github上找找当前的稳定版:github地址,当前是2.7.0

1.下载dashboard配置

创建文件夹

mkdir -p /work/devops/k8s/dashboard/config
cd /work/devops/k8s/dashboard/config

下载 dashboard配置

wget https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml

注意:如果下载失败,可以手动用浏览器去访问这个地址,把内容复制到Linux服务器里即可。

2.修改配置,允许外部访问

默认Dashboard只能集群内部访问,修改Service为NodePort类型,暴露到外部。

找到 kubernetes-dashboard 的 service,添加 type: NodePort ,这里我指定的 nodePort 是 30001(nodePort有限制:30000~32767)。如下图所示(左侧是原文件,右侧是修改后的(忽略中间的大于号)):

3.启用dashboard

kubectl apply -f recommended.yaml

结果

4.查看状态

查看service

kubectl get services -A

或者 

kubectl get services -n kubernetes-dashboard

结果 

查看pods

kubectl get pods -n kubernetes-dashboard

或者

kubectl get pods -A

结果

这样是有问题的,解决方法如下:

K8S-解决dashboard一直Pending的问题 – 自学精灵

解决K8S的dashboard的ImagePullBackOff和ErrImagePull的问题-自学精灵

最终结果:

查看services

kubectl get services -A

结果 

5.访问页面

先访问一下dashboard页面(注意:必须用https访问):https://ip:30001

OK,可以访问了!

2.登录

见:K8S的dashboard使用token登录 – 自学精灵

注意:下边这个方式不推荐

见:K8S的dashboard使用账号密码登录 – 自学精灵

0

评论10

请先

  1. 这个命令报错了:wget https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml : wget https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml --2024-07-23 11:06:55-- https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml 正在解析主机 raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.110.133, 185.199.108.133, 185.199.111.133, ... 正在连接 raw.githubusercontent.com (raw.githubusercontent.com)|185.199.110.133|:443... 失败:没有到主机的路由。 正在连接 raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... 失败:没有到主机的路由。 正在连接 raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... 失败:没有到主机的路由。 正在连接 raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... 失败:没有到主机的路由。 正在连接 raw.githubusercontent.com (raw.githubusercontent.com)|2606:50c0:8003::154|:443... 失败:网络不可达。 正在连接 raw.githubusercontent.com (raw.githubusercontent.com)|2606:50c0:8000::154|:443... 失败:网络不可达。 正在连接 raw.githubusercontent.com (raw.githubusercontent.com)|2606:50c0:8001::154|:443... 失败:网络不可达。 正在连接 raw.githubusercontent.com (raw.githubusercontent.com)|2606:50c0:8002::154|:443... 失败:网络不可达。
    流年 2024-07-23 0
    • 如果报错,手动把这个文件复制一下,复制到Linux服务器即可。
      自学精灵 2024-07-23 0
  2. 大佬,请问我访问dashboard页面,报错 此站点的连接不安全,是什么问题的?
    梧の桐 2024-05-14 0
    • 点击继续访问就行。这个与ssl证书有关,生产环境配置正确的SSL证书就没这个问题了。
      自学精灵 2024-05-14 0
      • 没有继续访问的按钮,显示 发送了无效的响应,ERR_SSL_PROTOCOL_ERROR
        梧の桐 2024-05-15 0
        • 可能与浏览器设置有关,可以换个浏览器试试。
          自学精灵 2024-05-15 0
  3. 还有这个东西怎么重新启动,找了一圈没找到,又不能直接重新apply,哇好暴躁
    150003 2024-04-23 0
    • 删除重新启动即可,见:https://way2j.com/a/3191#%E9%85%8D%E7%BD%AE%E4%B8%8E%E8%B5%84%E6%BA%90
      自学精灵 2024-04-23 0
  4. 解决K8S的dashboard一直Pending的问题 这个好像没了,麻烦看看,现在就是一直pending
    150003 2024-04-23 0
显示验证码
没有账号?注册  忘记密码?

社交账号快速登录