11# Qdrant helm chart
22
3- [ Qdrant documentation] ( https://qdrant.tech/documentation/ )
3+ [ Qdrant documentation] ( https://qdrant.tech/documentation/ )
44
5+ ## Disclaimer
56
6- ## Disclaimer;
77For production use cases, please pin the version of the qdrant image in the values.yaml file to a specific version instead of latest
88
9- ## TLDR;
10-
9+ ## TLDR
1110
1211``` bash
1312helm repo add qdrant https://qdrant.github.io/qdrant-helm
@@ -19,7 +18,6 @@ helm install your-qdrant-installation-name qdrant/qdrant
1918
2019This chart installs and bootstraps a Qdrant instance.
2120
22-
2321## Prerequisites
2422
2523- Kubernetes
@@ -35,10 +33,12 @@ helm install your-qdrant-installation-name .
3533```
3634
3735To install a specific version of the qdrant image
36+
3837``` bash
3938helm install your-qdrant-installation-name . --set image.tag=v0.9.0
4039```
41- DISCLAIMER: This could lead to unexpected behaviour depending on chart version vs Qdrant image version
40+
41+ DISCLAIMER: This could lead to unexpected behaviour depending on chart version vs Qdrant image version
4242
4343Unistall via:
4444
@@ -55,7 +55,7 @@ kubectl delete pvc -l app.kubernetes.io/instance=your-qdrant-installation-name
5555## Configuration
5656
5757For documentation of the settings please refer to [ Qdrant Configuration File] ( https://github.com/qdrant/qdrant/blob/master/config/config.yaml )
58- All of these configuration options could be overwritten under config in ` values.yaml ` .
58+ All of these configuration options could be overwritten under config in ` values.yaml ` .
5959A modifcation example is provided there.
6060
6161### Distributed setup
@@ -75,6 +75,12 @@ To restore a snapshot create a Persistent Volume and a Persistent Volume Claim u
7575Example EBS pv, pvc and volume creation command is added in examples directory
7676Note: Make sure volume is on the same region and availability zone as where qdrant is going to be installed.
7777
78+ ### Metrics endpoints
79+
80+ Metrics are availables on rest api (default port set to 6333) at ` /metrics `
81+
82+ Refer to [ qdrant metrics configuration] ( https://qdrant.tech/documentation/telemetry/#metrics ) for more information
83+
7884### Enable rolling update on configuration change
7985
8086To enable rolling update on config map modification set ` updateConfigurationOnChange ` to true
0 commit comments