Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meilisearch/meilisearch-kubernetes
Meilisearch on Kubernetes Helm charts and manifests
https://github.com/meilisearch/meilisearch-kubernetes
helm helm-chart integration k8s kubernetes kubernetes-deployment meilisearch meilisearch-kubernetes
Last synced: 28 days ago
JSON representation
Meilisearch on Kubernetes Helm charts and manifests
- Host: GitHub
- URL: https://github.com/meilisearch/meilisearch-kubernetes
- Owner: meilisearch
- License: mit
- Created: 2020-07-01T10:27:01.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T10:04:49.000Z (about 2 months ago)
- Last Synced: 2024-10-28T13:01:13.919Z (about 2 months ago)
- Topics: helm, helm-chart, integration, k8s, kubernetes, kubernetes-deployment, meilisearch, meilisearch-kubernetes
- Language: Mustache
- Homepage: https://www.meilisearch.com
- Size: 528 KB
- Stars: 212
- Watchers: 5
- Forks: 59
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-meilisearch - meilisearch-kubernetes - Deploy on Kubernetes (Tools / Official Tools)
README
Meilisearch Kubernetes
Meilisearch |
Meilisearch Cloud |
Documentation |
Discord |
Website |
Blog |
FAQThe Meilisearch tool for Kubernetes ⚓️
**Meilisearch** is an open-source search engine. [Discover what Meilisearch is!](https://github.com/meilisearch/meilisearch)
## Table of Contents
- [📖 Documentation](#-documentation)
- [⚡ Supercharge your Meilisearch experience](#-supercharge-your-meilisearch-experience)
- [🚀 Getting Started](#-getting-started)
- [🤖 Compatibility with Meilisearch](#-compatibility-with-meilisearch)
- [⚙️ Development Workflow and Contributing](#️-development-workflow-and-contributing)## 📖 Documentation
See our [Documentation](https://www.meilisearch.com/docs/learn/getting_started/installation) or our [API References](https://www.meilisearch.com/docs/reference/api/overview).
## ⚡ Supercharge your Meilisearch experience
Say goodbye to server deployment and manual updates with [Meilisearch Cloud](https://www.meilisearch.com/cloud?utm_campaign=oss&utm_source=github&utm_medium=cloud-providers). 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](https://kubernetes.io/docs/home/).
### Install kubectl
`kubectl` is the most commonly used CLI to manage a Kubernetes cluster. The installation instructions are [available here](https://kubernetes.io/docs/tasks/tools/install-kubectl/).
### Deploy Meilisearch using manifests
#### Install and run Meilisearch
```bash
kubectl apply -f manifests/meilisearch.yaml
```#### Uninstall Meilisearch
```bash
kubectl delete -f manifests/meilisearch.yaml
```### Deploy Meilisearch using Helm
Helm works as a package manager to run pre-configured Kubernetes resources. Using our [Helm chart](https://github.com/meilisearch/meilisearch-kubernetes/tree/main/charts/meilisearch) you will be able to deploy a Meilisearch instance in you Kubernetes cluster, with several customizable configurations.
#### Install helm
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](https://helm.sh/docs/intro/install/).
The [Parameters](https://github.com/meilisearch/meilisearch-kubernetes/tree/main/charts/meilisearch#parameters) section lists the parameters that can be configured during installation.
#### Install Meilisearch chart
First, add the Meilisearch chart repository
```bash
helm repo add meilisearch https://meilisearch.github.io/meilisearch-kubernetes
```Now install/upgrade the chart
```bash
# Replace with the name you would like to give to your service
helm upgrade -i meilisearch/meilisearch
```#### Uninstalling the Chart
To uninstall/delete the Meilisearch deployment:
```bash
# Replace with the name of your deployed service
helm uninstall
```## 🤖 Compatibility with Meilisearch
This chart only guarantees the compatibility with the [version v1.11.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v1.11.0).
## ⚙️ 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](/CONTRIBUTING.md) for detailed instructions!
**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](https://github.com/meilisearch/integration-guides) repository.