diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 7d9a87b..562d665 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -22,5 +22,5 @@ If applicable, add screenshots or logs to help explain your problem. **Environment (please complete the following information):** - OS: [e.g. Debian GNU/Linux] -- MeiliSearch version: [e.g. v.0.20.0] +- Meilisearch version: [e.g. v.0.20.0] - meilisearch-kubernetes version: [e.g v0.1.14] diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2e6d6b6..dedd92f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing -First of all, thank you for contributing to MeiliSearch! The goal of this document is to provide everything you need to know in order to contribute to MeiliSearch and its different integrations. +First of all, thank you for contributing to Meilisearch! The goal of this document is to provide everything you need to know in order to contribute to Meilisearch and its different integrations. - [Assumptions](#assumptions) - [How to Contribute](#how-to-contribute) @@ -11,8 +11,8 @@ First of all, thank you for contributing to MeiliSearch! The goal of this docume ## Assumptions 1. **You're familiar with [GitHub](https://github.com) and the [Pull Request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests)(PR) workflow.** -2. **You've read the MeiliSearch [documentation](https://docs.meilisearch.com) and the [README](/README.md).** -3. **You know about the [MeiliSearch community](https://docs.meilisearch.com/learn/what_is_meilisearch/contact.html). Please use this for help.** +2. **You've read the Meilisearch [documentation](https://docs.meilisearch.com) and the [README](/README.md).** +3. **You know about the [Meilisearch community](https://docs.meilisearch.com/learn/what_is_meilisearch/contact.html). Please use this for help.** ## How to Contribute @@ -46,7 +46,7 @@ You can install and test the Helm chart by running: helm install meilisearch-chart-test -f charts/meilisearch/values.yaml charts/meilisearch ``` -An easy way to access your MeiliSearch instance and test that it is up and running is by using port-forwarding. This can be achieved by running: +An easy way to access your Meilisearch instance and test that it is up and running is by using port-forwarding. This can be achieved by running: ```bash kubectl port-forward --namespace default svc/meilisearch 7700:7700 @@ -119,7 +119,7 @@ Some notes on GitHub PRs: ## Release Process (for internal team only) -MeiliSearch tools follow the [Semantic Versioning Convention](https://semver.org/). +Meilisearch tools follow the [Semantic Versioning Convention](https://semver.org/). ### Automation to Rebase and Merge the PRs diff --git a/LICENSE b/LICENSE index ffafdd0..1f9d55d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,6 @@ MIT License -Copyright (c) 2020 sa -Copyright (c) 2020-2021 MeiliSearch +Copyright (c) 2020-2021 Meilisearch Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 224516f..6d82f6f 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@
-
+
The MeiliSearch tool for Kubernetes ⚓️
+The Meilisearch tool for Kubernetes ⚓️
-**MeiliSearch** is an open-source search engine. [Discover what MeiliSearch is!](https://github.com/meilisearch/MeiliSearch) +**Meilisearch** is an open-source search engine. [Discover what Meilisearch is!](https://github.com/meilisearch/meilisearch) ## Table of Contents - [📖 Documentation](#-documentation) - [🚀 Getting Started](#-getting-started) -- [🤖 Compatibility with MeiliSearch](#-compatibility-with-meilisearch) +- [🤖 Compatibility with Meilisearch](#-compatibility-with-meilisearch) - [⚙️ Development Workflow and Contributing](#️-development-workflow-and-contributing) ## 📖 Documentation @@ -36,7 +36,7 @@ See our [Documentation](https://docs.meilisearch.com/learn/tutorials/getting_sta ## 🚀 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. +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/). @@ -44,23 +44,23 @@ First of all, you will need a Kubernetes cluster up and running. If you are not `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 +### Deploy Meilisearch using manifests -#### Install and run MeiliSearch +#### Install and run Meilisearch ```bash kubectl apply -f manifests/meilisearch.yaml ``` -#### Uninstall MeiliSearch +#### Uninstall Meilisearch ```bash kubectl delete -f manifests/meilisearch.yaml ``` -### Deploy MeiliSearch using Helm +### 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. +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 @@ -68,9 +68,9 @@ Helm CLI is a Command Line Interface which will automate chart management and in 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 +#### Install Meilisearch chart -First, add the meilisearch chart repository +First, add the Meilisearch chart repository ```bash helm repo add meilisearch https://meilisearch.github.io/meilisearch-kubernetes ``` @@ -83,16 +83,16 @@ helm upgrade -i