Home

Awesome

<p align="center"> <img src="https://raw.githubusercontent.com/meilisearch/integration-guides/main/assets/logos/meilisearch_k8s.svg" alt="Meilisearch Kubernetes" width="200" height="200" /> </p> <h1 align="center">Meilisearch Kubernetes</h1> <h4 align="center"> <a href="https://github.com/meilisearch/meilisearch">Meilisearch</a> | <a href="https://www.meilisearch.com/cloud?utm_campaign=oss&utm_source=github&utm_medium=meilisearch-kubernetes">Meilisearch Cloud</a> | <a href="https://www.meilisearch.com/docs">Documentation</a> | <a href="https://discord.meilisearch.com">Discord</a> | <a href="https://www.meilisearch.com">Website</a> | <a href="https://blog.meilisearch.com">Blog</a> | <a href="https://www.meilisearch.com/docs/faq">FAQ</a> </h4> <p align="center"> <a href="https://github.com/meilisearch/meilisearch-kubernetes/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-MIT-informational" alt="License"></a> <a href="https://ms-bors.herokuapp.com/repositories/65"><img src="https://bors.tech/images/badge_small.svg" alt="Bors enabled"></a> </p> <p align="center">The Meilisearch tool for Kubernetes ⚓️</p>

Meilisearch is an open-source search engine. Discover what Meilisearch is!

Table of Contents <!-- omit in TOC -->

📖 Documentation

See our Documentation or our API References.

⚡ Supercharge your Meilisearch experience

Say goodbye to server deployment and manual updates with Meilisearch Cloud. Get started with a 14-day free trial! No credit card required.

🚀 Getting Started

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.

Install kubectl <!-- omit in toc -->

kubectl is the most commonly used CLI to manage a Kubernetes cluster. The installation instructions are available here.

Deploy Meilisearch using manifests <!-- omit in toc -->

Install and run Meilisearch <!-- omit in toc -->

kubectl apply -f manifests/meilisearch.yaml

Uninstall Meilisearch <!-- omit in toc -->

kubectl delete -f manifests/meilisearch.yaml

Deploy Meilisearch using Helm <!-- omit in toc -->

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.

Install helm <!-- omit in toc -->

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.

Install Meilisearch chart <!-- omit in toc -->

First, add the Meilisearch chart repository

helm repo add meilisearch https://meilisearch.github.io/meilisearch-kubernetes

Now install/upgrade the chart

# Replace <your-instance-name> with the name you would like to give to your service
helm upgrade -i <your-service-name> meilisearch/meilisearch

Uninstalling the Chart <!-- omit in toc -->

To uninstall/delete the Meilisearch deployment:

# Replace <your-instance-name> with the name of your deployed service
helm uninstall <your-service-name>

🤖 Compatibility with Meilisearch

This chart only guarantees the compatibility with the version v1.10.0 of Meilisearch.

⚙️ Development Workflow and Contributing

Any new contribution is more than welcome in this project!

If you want to know more about the development workflow or want to contribute, please visit our contributing guidelines for detailed instructions!

<hr>

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.