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

Added REMOTE_STORAGE deploy variable to Cloud Guide #8230

Merged
merged 3 commits into from
Nov 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/_data/var.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ mbi: Magento Business Intelligence
# Cloud product name variables

ece: Magento Commerce Cloud
ece-release-date: November 9, 2020
ece-release-date: Month Day, 2021
csuite: Magento Commerce Cloud Suite
ct: ece-tools
ct-repo: magento/ece-tools
ct-release: 2002.1.3
ct-release: 2002.1.4
mcp-prod: Magento Cloud Patches
mcp-package: magento/magento-cloud-patches
mcp-release: 1.0.8
Expand Down
20 changes: 20 additions & 0 deletions src/cloud/env/variables-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,26 @@ You must have a Redis service configured in the `.magento.app.yaml` file and in

The read-only connection is not available for use in the Integration environment or if you use the [`CACHE_CONFIGURATION` variable](#cache_configuration).

### `REMOTE_STORAGE`

- **Default**—_Not set_
- **Version**—Magento 2.4.2 and later

Configure a _storage adapter_ to store media files in a persistent, remote storage container using a storage service, such as AWS S3. Use the remote storage option to improve performance on Cloud projects with complex, multi-server configurations that must share resources. See [Enable storage adapter]({{site.baseurl}}/guides/v2.4/config-guide/remote-storage/config-remote-storage#enable-storage-adapter.html).

```yaml
stage:
deploy:
REMOTE_STORAGE:
driver: aws-s3 # Required
prefix: cloud # Optional
config:
bucket: my-bucket # Required
region: my-region # Required
key: my-key # Optional
secret: my-secret-key # Optional
```

### `RESOURCE_CONFIGURATION`

- **Default**—Not set
Expand Down
7 changes: 7 additions & 0 deletions src/cloud/release-notes/ece-release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ The `{{site.data.var.ct}}` package uses the following release versioning sequenc
{:.bs-callout-info}
See [Upgrades and patches]({{ site.baseurl }}/cloud/project/project-upgrade-parent.html) for information about updating to the latest release of the `{{site.data.var.ct}}` package.

## v2002.1.4
*Release date: {{ site.data.var.ece-release-date }}*<br/>

**Environment variable updates**–

- Added the [`REMOTE_STORAGE`]({{site.baseurl}}/cloud/env/variables-deploy.html#remote_storage) environment variable to enable Cloud Projects for remote storage of media files using a storage service such as AWS S3.<!--MCLOUD-7153-->

## v2002.1.3
*Release date: {{ site.data.var.ece-release-date }}*<br/>

Expand Down