diff --git a/Chart.yaml b/Chart.yaml index 77d5b4a..438e953 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.1 +version: 0.2.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.8.2" +appVersion: "0.9.1" diff --git a/README.md b/README.md index 504f89c..e40854d 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,11 @@ ## TLDR; -Checkout the repository and ```bash -helm install your-qdrant-installation-name . +helm repo add qdrant https://qdrant.github.io/qdrant-helm +helm repo update +helm install your-qdrant-installation-name qdrant/qdrant ``` ## Description @@ -29,6 +30,12 @@ You can install the chart via: helm install your-qdrant-installation-name . ``` +To install a specific version of the qdrant image +```bash +helm install your-qdrant-installation-name . --set image.tag=v0.9.0 +``` +DISCLAIMER: This could lead to unexpected behaviour depending on chart version vs Qdrant image version + Unistall via: ```bash diff --git a/values.yaml b/values.yaml index e3735ce..10e29a5 100644 --- a/values.yaml +++ b/values.yaml @@ -3,7 +3,7 @@ replicaCount: 1 image: repository: qdrant/qdrant pullPolicy: IfNotPresent - tag: v0.8.2 + tag: v0.9.1 imagePullSecrets: [] nameOverride: "" @@ -68,12 +68,10 @@ persistence: #storageClassName: local-path #modification example for configuration to overwrite defaults -#config: -# debug: true -# log_level: DEBUG -# cluster: -# enabled: true -# p2p: -# port: 6335 -# consensus: -# tick_period_ms: 100 +config: + cluster: + enabled: true + p2p: + port: 6335 + consensus: + tick_period_ms: 100