This repository hosts the following helm charts:
helm repo add qdrant https://qdrant.github.io/qdrant-helm
helm repo update
helm upgrade -i your-qdrant-installation-name qdrant/qdrantThis repository has unit and integration tests for the charts. All charts are also linted.
Linting is done with helm lint.
Prerequisites:
- Helm
brew install helmTo lint all charts:
make lintUnit tests are in the ./test directory and written in Go with terratest.
Prerequisites:
- Go
brew install goTo run the tests:
make test-unitIntegration tests are in the ./test/integration directory and written with bats.
There is an additional simple Helm test in ./charts/qdrant/templates/tests.
Prerequisites:
- Docker
- Kind
- Kubectl
- Helm
- Bats
brew install helm kubectl kind bats-core homebrew/cask/dockerTo run the tests:
make test-integrationGenerally, we choose to release a new chart when there are important new releases to Qdrant or important chart-related changes.
- Check the release notes of qdrant/qdrant to see if any environment variables or other settings need to be adjusted.
- Sync your local clone/fork of the qdrant-helm repo:
git checkout main && git pull - Checkout a new feature branch:
git checkout -b feat/<name>/qdrant-<version> - Edit
Chart.yamlto bump the appVersion and chartVersion. - Edit
Chart.yamlto updateartifacthub.io/changesto mention the new changes. - Edit
charts/CHANGELOG.mdto mention the same changes - Edit the root
CHANGELOG.mdto mention the same changes- Why so many changelog changes? Each changelog file is for a different audience (artifacthub, chart browsing, github browsing). This could be automated in the future.
- Push your changes to GitHub and create a pull request. This allows the integration tests to run.
As soon as these changes are merged to main, there is a github action that detects changes to Chart.yaml which will perform the remainder of the release operations (creating a github release, publishing the helm chart, updating index.html for the github pages site, etc.)