Skip to content

qdrant/qdrant-helm

Folders and files

NameName
Last commit message
Last commit date
Sep 13, 2023
Oct 9, 2023
Oct 25, 2022
Oct 5, 2023
Aug 15, 2023
Oct 9, 2023
Aug 21, 2023
Oct 5, 2023
Aug 31, 2023
Sep 1, 2023
Sep 13, 2023
Sep 13, 2023

Repository files navigation

Qdrant helm repository

Qdrant documentation

This repository hosts the following helm charts:

Usage

helm repo add qdrant https://qdrant.github.io/qdrant-helm

Running tests

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

Linting

Linting is done with helm lint.

Prerequisites:

  • Helm
brew install helm

To lint all charts:

make lint

Unit tests

Unit tests are in the ./test directory and written in Go with terratest.

Prerequisites:

  • Go
brew install go

To run the tests:

make test-unit

Integration tests

Integration 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/docker

To run the tests:

make test-integration