可视化应用
k8s作为容器编排应用单纯的使用命令进行操作还是不太方便的,它的可视化系统有很多,官方就提供了dashboard
来做k8s的可视化应用,同时k8s
提供了对外的api接口,因此可以定制化的开发可视化系统,下面示例几个常用的k8s可视化应用
。
dashboard
lens
octant
rancher
weave-scope
kubord
compass
kubesphere
前言
本篇的选择是KubeSphere
,不光看着好看,KubeSphere
3.0
后还开源了KubeKey组件
,KubeKey
支持一键部署单机或者集群k8s,并且也支持在已有K8s
的环境下安装KubeSphere
,本篇就是在k8s
的环境下安装KubeSphere
。
KubeSphere介绍
KubeSphere
是在 Kubernetes
之上构建的面向云原生应用的分布式操作系统,完全开源,支持多云与多集群管理,提供全栈的 IT 自动化运维能力,简化企业的 DevOps 工作流
。它的架构可以非常方便地使第三方应用与云原生生态组件进行即插即用 (plug-and-play) 的集成。
作为全栈的多租户容器平台,KubeSphere 提供了运维友好的向导式操作界面,帮助企业快速构建一个强大和功能丰富的容器云平台。KubeSphere 为用户提供构建企业级 Kubernetes 环境所需的多项功能,例如多云与多集群管理
、Kubernetes 资源管理
、DevOps
、应用生命周期管理
、微服务治理(服务网格)
、日志查询与收集
、服务与网络
、多租户管理
、监控告警
、事件与审计查询
、存储管理
、访问权限控制
、GPU 支持
、网络策略
、镜像仓库管理
以及安全管理
等。
安装KubeSphere
1. 准备私有镜像仓库
在本地的K8s
安装KubeSphere
必须创建一个本地仓库来托管 Docker 镜像
。官方推荐的Harbor
,如果已经有了可以跳过此步骤,没有的话可以看此篇文章配置Harbor仓库
:在线安装harbor镜像仓库
2. 安装镜像
2.1 下载镜像清单
使用以下命令从能够访问互联网的机器上下载镜像清单文件 images-list.txt:
代码语言:javascript复制curl -L -O https://github.com/kubesphere/ks-installer/releases/download/v3.3.0/images-list.txt
2.2 下载 offline-installation-tool.sh
代码语言:javascript复制curl -L -O https://github.com/kubesphere/ks-installer/releases/download/v3.3.0/offline-installation-tool.sh
2.3 设置可执行文件
代码语言:javascript复制chmod x offline-installation-tool.sh
2.4 拉取镜像
代码语言:javascript复制可以查看images-list.txt文件来筛选自己需要的镜像,如果安装了k8s就把`##k8s-images`下的镜像去掉
代码语言:javascript复制./offline-installation-tool.sh -s -l images-list.txt -d ./kubesphere-images
如果拉取时报格式异常如下,就查看images-list.txt文件的格式是否正常,可以分段拉取
代码语言:javascript复制invalid reference format
如果太慢的话就切换为国内镜像
代码语言:javascript复制sudo vim /etc/docker/daemon.json
添加如下内容
代码语言:javascript复制{
"registry-mirrors": ["https://b9pmyelo.mirror.aliyuncs.com"]
}
重启docker
代码语言:javascript复制sudo systemctl restart docker
等待拉取完成
3. 推送镜像
将打包的镜像文件推送至我们的私有镜像仓库,dockerhub.kubekey.local是仓库地址
代码语言:javascript复制./offline-installation-tool.sh -l images-list.txt -d ./kubesphere-images -r dockerhub.kubekey.local
4. 部署集群
4.1 下载部署文件
代码语言:javascript复制curl -L -O https://github.com/kubesphere/ks-installer/releases/download/v3.3.0/cluster-configuration.yaml
curl -L -O https://github.com/kubesphere/ks-installer/releases/download/v3.3.0/kubesphere-installer.yaml
4.2 编辑部署文件
编辑 cluster-configuration.yaml 添加您的私有镜像仓库。dockerhub.kubekey.local
修改为自己的仓库地址
spec:
persistence:
storageClass: ""
authentication:
jwtSecret: ""
local_registry: dockerhub.kubekey.local
4.3 替换仓库地址
执行下面命令替换仓库地址,dockerhub.kubekey.local
修改为自己仓库的地址
sed -i "s#^s*image: kubesphere.*/ks-installer:.*# image: dockerhub.kubekey.local/kubesphere/ks-installer:v3.0.0#" kubesphere-installer.yaml
5. 安装
执行以下命令,安装KubeSphere
代码语言:javascript复制kubectl apply -f kubesphere-installer.yaml
kubectl apply -f cluster-configuration.yaml
安装完成后可以看到如下日志
代码语言:javascript复制#####################################################
### Welcome to KubeSphere! ###
#####################################################
Console: http://10.0.28.2:30880
Account: admin
Password: P@88w0rd
NOTES:
1. After logging into the console, please check the
monitoring status of service components in
the "Cluster Management". If any service is not
ready, please wait patiently until all components
are ready.
2. Please modify the default password after login.
#####################################################
https://kubesphere.io 20xx-xx-xx xx:xx:xx
#####################################################
根据日志可以通过访问ip:30880
地址进入web页面,账号密码为:
Account: admin
Password: P@88w0rd