Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Changes related to the next Meilisearch release (v0.28.0) #271

Merged
merged 15 commits into from
Oct 6, 2022
4 changes: 2 additions & 2 deletions tools/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@

# Update with the Meilisearch version TAG you want to build the image with

MEILI_CLOUD_SCRIPTS_VERSION_TAG = 'v0.27.1'
MEILI_CLOUD_SCRIPTS_VERSION_TAG = 'v0.28.0'

# Script settings

DIGITALOCEAN_ACCESS_TOKEN = os.getenv('DIGITALOCEAN_ACCESS_TOKEN')
DIGITALOCEAN_END_POINT = 'https://api.digitalocean.com/v2'
SNAPSHOT_NAME = f'MeiliSearch-{MEILI_CLOUD_SCRIPTS_VERSION_TAG}-Debian-10.3'
# https://developers.digitalocean.com/documentation/changelog/api-v2/new-size-slugs-for-droplet-plan-changes/
SIZE_SLUG = 's-1vcpu-1gb'
SIZE_SLUG = 's-2vcpu-2gb'
USER_DATA = requests.get(
f'https://raw.githubusercontent.com/meilisearch/cloud-scripts/{MEILI_CLOUD_SCRIPTS_VERSION_TAG}/scripts/providers/digitalocean/cloud-config.yaml'
).text
Expand Down