Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request magento-commerce/devdocs#3142 from magento-devdocs…
Browse files Browse the repository at this point in the history
…/gm_MAGEDOC-9468_apply-missing-step-Pro-integration

Added Pro Integration and Plugin info
  • Loading branch information
gamarshall authored Sep 9, 2022
2 parents 9dad245 + 456324a commit 15b3626
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/_includes/cloud/service-config-integration-starter.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Use the following instructions for service setup on {{site.data.var.ece}} Pro Integration environments and Starter environments, including the `master` branch.

{:.bs-callout-info}
You must submit a support ticket to change the service configuration on Pro Production and Staging environments. See [Services]({{ site.baseurl }}/cloud/project/services.html).
You must submit a [Support ticket](https://support.magento.com/hc/en-us/articles/360000913794#support-tickets) to change the service configuration on Pro Production and Staging environments. See [Services]({{ site.baseurl }}/cloud/project/services.html).
19 changes: 17 additions & 2 deletions src/cloud/project/services-opensearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,20 @@ OpenSearch enables you to take data from any source, any format, and search and
{:.bs-callout-tip}
Adobe recommends that you always set up OpenSearch for your {{ site.data.var.ece }} project even if you plan to configure a third-party search tool for your {{ site.data.var.ee }} application. Setting up OpenSearch provides a fallback option in the event that the third-party search tool fails.

## Enable OpenSearch

{:.procedure}
To enable OpenSearch:

1. For Starter projects, add the `opensearch` service to the `.magento/services.yaml` file with the appropriate version and allocated disk space in MB.
1. For Starter projects and Pro Integration environments, add the `opensearch` service to the `.magento/services.yaml` file with the appropriate version and allocated disk space in MB.

```yaml
opensearch:
type: opensearch:<version>
disk: 1024
```
For Pro projects, you must submit a {{site.data.var.ee}} Support ticket to change the OpenSearch version in the Staging and Production environments.
For Pro projects, you must submit a {{site.data.var.ee}} [Support ticket](https://support.magento.com/hc/en-us/articles/360000913794#support-tickets) to change the OpenSearch version in the Staging and Production environments.
1. Set the `relationships` property in the `.magento.app.yaml` file.

Expand Down Expand Up @@ -66,3 +68,16 @@ To enable OpenSearch:
```

{%include cloud/tip-change-installed-service-version.md%}

## Add plugins for OpenSearch

You can add plugins to OpenSearch by adding the `configuration:plugins` section to the OpenSearch service in the `.magento/services.yaml` file. For example, the following code enables both the ICU and Phonetic analysis plugins.

```yaml
opensearch:
type: opensearch:<service-version>
disk: 1024
configuration:
plugins:
- analysis-icu
- analysis-phonetic

0 comments on commit 15b3626

Please sign in to comment.