meilisearch / cloud-providers

☁ Meilisearch DevOps Tools for the Cloud ☁

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Meilisearch Cloud Providers

Meilisearch Cloud Providers

License Bors enabled

☁ Meilisearch tools for the Cloud ☁

Meilisearch Cloud Providers is a set of tools and scripts allowing to build Meilisearch images for multiple platforms made with Packer.

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

Table of Contents

⚡ 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.

🎁 Content of this repository

These Packer build configurations are used primarily by the Meilisearch integration team, aiming to provide our users simple ways to deploy and configure Meilisearch in the cloud by creating ready-made images of Meilisearch. As our heart resides in the open-source community, we maintain several of these tools as open-source repositories.

☁ Providers available

Cloud Provider
AWS
DigitalOcean
GCP

📖 Documentation

See our Documentation or our API References.

🔧 Prerequisites

You need the following to run the template:

  1. The Packer CLI v1.8.6+ installed locally
  2. Obtain your AWS access keys
  3. Obtain your DigitalOcean API Token
  4. Obtain your GCP credentials

🔑 Set your credentials

  • Aws
export AWS_ACCESS_KEY_ID="YOUR_ACCESS_KEY"
export AWS_SECRET_ACCESS_KEY="YOUR_SECRET_KEY"
  • DigitalOcean
export DIGITALOCEAN_TOKEN="XxXxxxxXXxxXXxxXXxxxXXXxXxXxXX"
  • GCP
export GOOGLE_APPLICATION_CREDENTIALS="path_to_your_creadential_file.json"

🚀 Getting Started

Initialize your Packer configuration

Download and install packer plugins

packer init .

Build all the images

⚠ Please note that this command will create all new Meilisearch images on all platforms of the specified version.

packer build meilisearch.pkr.hcl

Build an image just for one provider

⚠ Please note that this command will create new Meilisearch image on the dedicated platforms of the specified version.

packer build -only 'amazon-ebs.*' .
packer build -only 'digitalocean.*' .
packer build -only 'googlecompute.*' .

🚀 How to deploy Meilisearch

If you want to learn how to deploy a Meilisearch instance on DigitalOcean visit the dedicated page of our documentation:

About

☁ Meilisearch DevOps Tools for the Cloud ☁

License:MIT License


Languages

Language:Shell 74.2%Language:HCL 25.8%