美文网首页
kubesphere安装

kubesphere安装

作者: 求索 | 来源:发表于2020-09-22 22:24 被阅读0次

kubesphere安装

下载资源文件

执行命令

kubectl apply -f kubesphere-installer.yaml
kubectl apply -f kubesphere-config.yaml

查看日志 显示如下表示安装成功

查看日志脚本:
```bash
kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app=ks-install -o jsonpath='{.items[0].metadata.name}') -f
```
返回结果
```logs
#####################################################
###              Welcome to KubeSphere!           ###
#####################################################

Console: http://192.168.31.121:30880
Account: admin
Password: P@88w0rd

```

踩坑

  • k8s 是1.19.2,没有注意文档提示。安装补了v2.1.1
  • Internal error occurred: account is not active, 重启master节点电脑就ok了
  • 2.1.1 可以在 k8s 1.17.x 上运行

参考文档

kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app=ks-install -o jsonpath='{.items[0].metadata.name}') -f

相关文章

网友评论

      本文标题:kubesphere安装

      本文链接:https://www.haomeiwen.com/subject/ozbgyktx.html