k3s部署kubesphere
时间: 2023-09-18 17:10:53 浏览: 217
3.安装kubesphere
要使用k3s部署kubesphere,你需要按照以下步骤进行操作:
1. 首先,根据kubesphere的准备工作说明,确定要安装的k3s版本。
2. 下载kubesphere的部署文件kubesphere-installer.yaml和cluster-configuration.yaml。可以使用以下命令将这两个文件应用到k3s集群中:
```
k3s kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.2.1/kubesphere-installer.yaml
k3s kubectl apply -f https://github.com/kubesphere/ks-installer/releases/download/v3.2.1/cluster-configuration.yaml
```
3. 安装过程中,你可以使用以下命令来查看安装日志:
```
k3s kubectl logs -n kubesphere-system $(kubectl get pod -n kubesphere-system -l app=ks-install -o jsonpath='{.items
阅读全文