Giter Site home page Giter Site logo

⚠️ UNDER ACTIVE DEVELOPMENT

Qdrant Operator for Kubernetes

.NET

Introduction

The Qdrant Operator for Kubernetes is an operator for managing Qdrant Clusters in a Kubernetes Cluster.

Installation

The included helm chart contains the necessary permissions and configuration to run the operator in a Kubernetes cluster.

To install the operator, run the following command:

$> helm install qdrant-operator ./charts/qdrant-operator

Then deploy a QdrantCluster resource:

apiVersion: qdrantoperator.io/v1alpha1
kind: QdrantCluster
metadata:
  name: my-cluster
spec:
  image:
    repository: qdrant/qdrant
    pullPolicy: Always
    tag: v1.8.1
  persistence:
    size: 1Gi
    storageClassName: default
  replicas: 1

You can also add Collections to the Cluster by adding a QdrantCollection resource:

apiVersion: qdrantoperator.io/v1alpha1
kind: QdrantCollection
metadata:
  name: my-collection
spec:
  cluster: my-cluster
  replicationFactor: 1
  vectorSpec:
    size: 5
    onDisk: true

You can also add Field Index to a colection by adding a QdrantCollectionFieldIndex resource:

apiVersion: qdrantoperator.io/v1alpha1
kind: QdrantCollectionFieldIndex
metadata:
  name: my-collection-field-index
spec:
  cluster: my-cluster
  collection: my-collection
  fieldName: my-field
  type: text
  textIndexType:
    tokenizer: word
    minTokenLen: 1
    maxTokenLen: 10
    loweracase: true

More Information

For any questions, please join our Slack channel:

Slack

This project is not affiliated with Qdrant

qdrant-operator's Projects

community-operators icon community-operators

The canonical source for Kubernetes Operators that are published on OperatorHub.io and part of the default catalog of the Operator Lifecycle Manager.

qdrant-operator icon qdrant-operator

Qdrant operator creates and manages Qdrant clusters running in Kubernetes

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.