- Kubernetes 1.14+
- Helm v3+
To install the chart with release name my-release:
helm repo add databend https://charts.databend.com
helm install my-release databend/databend-query --namespace databend --create-namespace
Note that for a production cluster, you will likely want to override the following parameters in values.yaml with your own values.
resources.requests.memoryandresources.limit.memoryallocate memory resource to query pods in your cluster.config.meta.addressindicates the grpc address of a Databend Meta service.config.storage.typedefaults tofsfor testing only,s3is recommended in production.config.storage.s3.accessKeyIdandconfig.storage.s3.secretAccessKeyshould be set when usings3storage,config.storage.s3.endpointUrldefaults tohttps://s3.amazonaws.com.
Then install the chart with release name my-release:
helm upgrade my-release databend/databend-query --namespace databend --create-namespace --values values.yaml
To uninstall/delete a Helm release my-release:
helm delete my-release --namespace databend