MeiliSearch | Website | Blog | Twitter | Documentation | FAQ
⚡ Lightning Fast, Ultra Relevant, and Typo-Tolerant Search Engine MeiliSearch tools for Kubernetes deployment
Kubernetes (K8s), is an open-source system for automating deployment, scaling, and management of containerized applications. You can run a MeiliSearch instance inside your Kubernetes cluster, either if you want to expose it to the outside world or just let some other applications use it inside your cluster and take advantage of the instant and powerful search engine.
First of all, you will need a Kubernetes cluster up and running. If you are not familiar with how Kuberentes works or need some help with this step, please check the Kubernetes documentation.
kubectl
is the most commonly used CLI to manage a Kubernetes cluster. The installation instructions are available here.
kubectl apply -f manifests/meilisearch.yaml
kubectl delete -f manifests/meilisearch.yaml
Helm works as a package manager to run pre-configured Kubernetes resources. Using our Helm chart you will be able to deploy a MeiliSearch instance in you Kubernetes cluster, with several customizable configurations.
Helm CLI is a Command Line Interface which will automate chart management and installation on your Kubernetes cluster. To install Helm, follow the Helm installation instructions.
The Parameters section lists the parameters that can be configured during installation.
Clone this repository and install the chart
git clone https://github.com/meilisearch/meilisearch-kubernetes.git
cd meilisearch-kubernetes
# Replace <your-instance-name> with the name you would like to give to your service
helm install <your-service-name> charts/meilisearch
To uninstall/delete the MeiliSearch` deployment:
# Replace <your-instance-name> with the name of your deployed service
helm uninstall <your-service-name>
MeiliSearch provides and maintains many SDKs and Integration tools like this one. We want to provide everyone with an amazing search experience for any kind of project. If you want to contribute, make suggestions, or just know what's going on right now, visit us in the integration-guides repository.