前提:准备kubernetes集群和可用的storagelass
helm部署kubesphere v3.0.0
添加helm repo
helm repo add main https://charts.kubesphere.io/main
helm repo add test https://charts.kubesphere.io/test
查看添加的helm repo
[root@test ks-installer]# helm repo list
NAME URL
longhorn https://charts.longhorn.io
main https://charts.kubesphere.io/main
test https://charts.kubesphere.io/main
查看repo中的charts
[root@test ~]# helm search repo main
NAME CHART VERSION APP VERSION DESCRIPTION
main/gitlab 4.2.2 13.2.2 Web-based Git-repository manager with wiki and ...
main/harbor 1.4.0 2.0.0 An open source trusted cloud native registry th...
main/minio 6.0.4 RELEASE.2020-08-08T04-50-06Z High Performance, Kubernetes Native Object Storage
main/nfs-client-provisioner 1.2.8 3.1.0 nfs-client is an automatic provisioner that use...
main/nginx 1.3.2 1.18.0 nginx is an HTTP and reverse proxy server, a ma...
main/sonarqube 6.6.0 8.2-community SonarQube is an open sourced code quality scann...
main/tomcat 0.4.1+1 8.5.41 Deploy a basic tomcat application server with s...
[root@test ~]# helm search repo test
NAME CHART VERSION APP VERSION DESCRIPTION
test/apisix 0.1.5 1.15.0 Apache APISIX is a dynamic, real-time, high-per...
test/aws-ebs-csi-driver 0.3.0 0.5.0 A Helm chart for AWS EBS CSI Driver
test/aws-efs-csi-driver 0.1.0 0.3.0 A Helm chart for AWS EFS CSI Driver
test/aws-fsx-csi-driver 0.1.0 0.1.0 The Amazon FSx for Lustre Container Storage Int...
test/biz-engine 0.1.0 1.0 A Helm chart for Kubernetes
test/csi-neonsan 1.2.2 1.2.0 A Helm chart for NeonSAN CSI Driver
test/csi-qingcloud 1.2.6 1.2.0 A Helm chart for Qingcloud CSI Driver
test/etcd 0.1.1 3.3.12 etcd is a distributed reliable key-value store ...
test/ks-installer 0.2.1 3.0.0 The helm chart of KubeSphere, supports installi...
test/mongodb 0.3.0 4.2.1 MongoDB is a general purpose, document-based, d...
test/porter 0.1.4 0.3.1 Bare Metal Load-balancer for Kubernetes Cluster
test/postgresql 0.3.2 12.0 PostgreSQL is a powerful, open source object-re...
test/rabbitmq 0.3.0 3.8.1 RabbitMQ is the most widely deployed open sourc...
test/rbd-provisioner 0.1.1 0.1.0 rbd provisioner is an automatic provisioner tha...
test/redis 0.3.2 5.0.5 Redis is an open source (BSD licensed), in-memo...
test/skywalking 3.1.0 8.1.0 Apache SkyWalking APM System
test/snapshot-controller 0.1.0 2.1.1 A Helm chart for snapshot-controller
部署kubesphere
helm install kubesphere \
--namespace=kubesphere-system \
--create-namespace \
--set image.repository=kubesphere/ks-installer \
--set image.tag=v3.0.0 \
--set persistence.storageClass=longhorn \
--set devops.enabled=true \
--set metrics_server.enabled=true \
--set openpitrix.enabled=true \
test/ks-installer