Deploy Doris on Helm Chart
Helm is the best way to find, share, and use software built for Kubernetes. Helm Charts help to define, install, and upgrade even the most complex Kubernetes application. Helm Chart makes it easy to deploy Doris clusters and skip difficult configuration steps.
Add Helm repository of Doris-Operatorβ
This Doris repository have resources about RBAC , deployment ...etc for doris-operator running.
- Add the Doris repository
$ helm repo add doris-repo https://charts.selectdb.com
- Update the Chart to the latest version
$ helm repo update doris-repo
- Check the Helm Chart Repo is the latest version
$ helm search repo doris-repo
NAME CHART VERSION APP VERSION DESCRIPTION
doris-repo/doris-operator 1.3.1 1.3.1 Doris-operator for doris creat ...
doris-repo/doris 1.3.1 2.0.3 Apache Doris is an easy-to-use ...
Install doris-operatorβ
1. Installβ
- Install doris-operatorοΌwith default config in a namespace named
doris
$ helm install operator doris-repo/doris-operator
- The repo defines the basic function for running doris-operator, Please use next command to deploy operator, when you have completed customization of values.yaml
$ helm install -f values.yaml operator doris-repo/doris-operator
2. Validate installation Statusβ
Check the deployment status of Pods through the kubectl get pods
command.
Observe that the Pod of doris-operator is in the Running state and all containers in the Pod are ready, that means, the deployment is successful.
$ kubectl get pod --namespace doris
NAME READY STATUS RESTARTS AGE
doris-operator-866bd449bb-zl5mr 1/1 Running 0 18m
Install dorisclusterβ
1. Installβ
- Use default config for deploying doriscluster. This only deploys 3 FE and 3 BE components and using default
storageClass
for providing persistent volume.
$ helm install doriscluster doris-repo/doris
- Custom Doris deploying, specify resources or different deployment type, please customize the resource configuration according to the annotations of each resource configuration in values.yaml and use next command for deploying.
$ helm install -f values.yaml doriscluster doris-repo/doris
2. Validate installation Statusβ
After executing the installation command, deployment and distribution, service deployment scheduling and startup will take a certain amount of time.
Check the deployment status of Pods through the kubectl get pods
command.
Observe that the Pod of doriscluster
is in the Running
state and all containers in the Pod are ready, that means, the deployment is successful.
$ kubectl get pod --namespace doris
NAME READY STATUS RESTARTS AGE
doriscluster-helm-fe-0 1/1 Running 0 1m39s
doriscluster-helm-fe-1 1/1 Running 0 1m39s
doriscluster-helm-fe-2 1/1 Running 0 1m39s
doriscluster-helm-be-0 1/1 Running 0 16s
doriscluster-helm-be-1 1/1 Running 0 16s
doriscluster-helm-be-2 1/1 Running 0 16s
Uninstall Doris by Helmβ
Uninstall dorisclusterβ
Please confirm the Doris is not used, when using next command to uninstall doriscluster
.
$ helm uninstall doriscluster
Uninstall doris-operatorβ
Please confirm that Doris is not running in Kubernetes, use next command to uninstall doris-operator
.
$ helm uninstall operator