Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docs for upgrading #152

Merged
merged 2 commits into from
Mar 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,24 @@ helm repo update
helm upgrade -i your-qdrant-installation-name qdrant/qdrant
```

## Upgrading

This helm chart installs the latest version of Qdrant by default. When a new version of Qdrant is available, upgrade the helm chart with the following commands:

```bash
helm repo update
helm upgrade your-qdrant-installation-name qdrant/qdrant
```

This command performs a rolling upgrade of your Qdrant cluster, updating one node at a time.

If you have overridden the Qdrant image tag in `values.yaml`, you will also need to update that tag before running `helm upgrade`.

```yaml
image:
tag: v1.8.1
```

## Running tests

This repository has unit and integration tests for the charts. All charts are also linted.
Expand Down
Loading