Skip to content

Commit d730998

Browse files
authored
Merge pull request #130 from magento-commerce/develop
MCLOUD-11596: Release Cloud Tools
2 parents c6a2c38 + 02a26af commit d730998

22 files changed

+214
-29
lines changed

.github/CONTRIBUTING.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,17 @@ You must have a [GitHub account](https://help.github.com/en/github/getting-start
1313

1414
## Contribution requirements
1515

16-
1. Contributions must adhere to the [Magento coding standards](https://devdocs.magento.com/guides/v2.3/coding-standards/bk-coding-standards.html).
16+
1. Contributions must adhere to the [coding standards](https://developer.adobe.com/commerce/php/coding-standards/).
1717
2. When you submit a Pull request (PR), write a meaningful description to explain the purpose of your contribution. Comprehensive descriptions increase the chances that a pull request can be merged quickly, without requests for additional clarification. See the [Magento Cloud Tools Pull Request Template](https://github.com/magento/ece-tools/blob/develop/.github/PULL_REQUEST_TEMPLATE.md) for more information.
1818
3. Commits must be accompanied by meaningful commit messages.
1919
4. If your PR includes bug fixes, provide a step-by-step description of how to reproduce the bug in the pull request description.
20-
3. If your PR includes new logic or new features, you must also submit the following information along with the pull request
20+
5. If your PR includes new logic or new features, you must also submit the following information along with the pull request
2121
* Unit/integration test coverage
22-
* Proposed documentation updates: Submit developer documentation contributions to the [Magento DevDocs repository](https://github.com/magento/devdocs/blob/master/.github/CONTRIBUTING.md). Submit updates to Magento user documentation to the [Magento Merchant documentation repository](https://github.com/magento/merchdocs/blob/master/.github/CONTRIBUTING.md).
23-
4. For larger features or changes, [open an issue](https://github.com/magento/ece-tools/issues/new) to discuss the proposed changes prior to development. Discussing the updates in advance can prevent duplicate or unnecessary effort and allow other contributors to provide input.
22+
* Proposed [documentation](https://developer.adobe.com/commerce) updates. Use feedback buttons __Edit in GitHub__ and __Log an issue__ at the top of a relevant topic.
23+
6. For larger features or changes, [open an issue](https://github.com/magento/ece-tools/issues/new) to discuss the proposed changes prior to development. Discussing the updates in advance can prevent duplicate or unnecessary effort and allow other contributors to provide input.
2424

2525
## Contribution process
26+
2627
1. Search current [listed issues](https://github.com/magento/ece-tools/issues) (open or closed) for similar proposals of intended contribution before starting work on a new contribution.
2728
2. Review and sign the [Contributor License Agreement (CLA)](https://opensource.adobe.com/cla.html) if this is your first time contributing. You only need to sign the CLA once.
2829
3. Create and test your work.

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
### Release notes
3636

37-
For user-facing changes, add a meaningful release note. For examples, see [Magento Cloud ECE-tools release notes](https://devdocs.magento.com/cloud/release-notes/ece-release-notes.html).
37+
For user-facing changes, add a meaningful release note. For examples, see [Magento Cloud ECE-tools release notes](https://experienceleague.adobe.com/docs/commerce-cloud-service/user-guide/release-notes/ece-tools-package.html).
3838

3939
### Associated documentation updates
4040
<!--

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The Magento Cloud Suite includes a set of packages designed to deploy and manage
1818

1919
## Useful Resources
2020
- [Release Notes](https://github.com/magento/ece-tools/releases)
21-
- [Magento Cloud Guide DevDocs](https://devdocs.magento.com/cloud/bk-cloud.html)
21+
- [Magento Cloud Guide DevDocs](https://experienceleague.adobe.com/docs/commerce-cloud-service/user-guide/overview.html)
2222
- [Cloud Knowledge Base and Support](https://support.magento.com)
2323
- [Cloud Slack Channel](https://magentocommeng.slack.com) (join #cloud and #cloud-docker)
2424

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/ece-tools",
33
"description": "Provides tools to build and deploy Magento 2 Enterprise Edition",
44
"type": "magento2-component",
5-
"version": "2002.1.16",
5+
"version": "2002.1.17",
66
"license": "OSL-3.0",
77
"repositories": {
88
"repo.magento.com": {

scenario/build/transfer.xml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<argument name="steps" xsi:type="array">
99
<item name="static-content" xsi:type="object" priority="100">Magento\MagentoCloud\Step\Build\BackupData\StaticContent</item>
1010
<item name="writable-dirs" xsi:type="object" priority="200">Magento\MagentoCloud\Step\Build\BackupData\WritableDirectories</item>
11+
<item name="clear-mounted-dirs" xsi:type="object" priority="300">Magento\MagentoCloud\Step\Build\ClearMountedDirectories</item>
1112
</argument>
1213
</arguments>
1314
</step>

src/Config/Validator/Deploy/ElasticSearchIntegrity.php

+14-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
namespace Magento\MagentoCloud\Config\Validator\Deploy;
99

1010
use Magento\MagentoCloud\App\Error;
11+
use Magento\MagentoCloud\Config\Magento\Shared\Reader;
1112
use Magento\MagentoCloud\Config\Validator;
1213
use Magento\MagentoCloud\Config\ValidatorException;
1314
use Magento\MagentoCloud\Config\ValidatorInterface;
@@ -42,22 +43,30 @@ class ElasticSearchIntegrity implements ValidatorInterface
4243
*/
4344
private $openSearch;
4445

46+
/**
47+
* @var Reader
48+
*/
49+
private $reader;
50+
4551
/**
4652
* @param MagentoVersion $magentoVersion
4753
* @param Validator\ResultFactory $resultFactory
4854
* @param ElasticSearch $elasticSearch
4955
* @param OpenSearch $openSearch
56+
* @param Reader $reader
5057
*/
5158
public function __construct(
5259
MagentoVersion $magentoVersion,
5360
Validator\ResultFactory $resultFactory,
5461
ElasticSearch $elasticSearch,
55-
OpenSearch $openSearch
62+
OpenSearch $openSearch,
63+
Reader $reader
5664
) {
5765
$this->magentoVersion = $magentoVersion;
5866
$this->resultFactory = $resultFactory;
5967
$this->elasticsearch = $elasticSearch;
6068
$this->openSearch = $openSearch;
69+
$this->reader = $reader;
6170
}
6271

6372
/**
@@ -70,8 +79,11 @@ public function validate(): Validator\ResultInterface
7079
return $this->resultFactory->success();
7180
}
7281

82+
$modules = $this->reader->read()['modules'] ?? [];
83+
$liveSearchEnabled = $modules['Magento_LiveSearchAdapter'] ?? false;
84+
7385
if ($this->magentoVersion->isGreaterOrEqual('2.4.0')
74-
&& !$this->elasticsearch->isInstalled()
86+
&& !$this->elasticsearch->isInstalled() && !$liveSearchEnabled
7587
) {
7688
return $this->resultFactory->errorByCode(Error::DEPLOY_ES_SERVICE_NOT_INSTALLED);
7789
}

src/Config/Validator/Deploy/OpenSearchIntegrity.php

+14-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
namespace Magento\MagentoCloud\Config\Validator\Deploy;
99

1010
use Magento\MagentoCloud\App\Error;
11+
use Magento\MagentoCloud\Config\Magento\Shared\Reader;
1112
use Magento\MagentoCloud\App\GenericException;
1213
use Magento\MagentoCloud\Config\Validator;
1314
use Magento\MagentoCloud\Config\ValidatorException;
@@ -43,22 +44,30 @@ class OpenSearchIntegrity implements ValidatorInterface
4344
*/
4445
private $openSearch;
4546

47+
/**
48+
* @var Reader
49+
*/
50+
private $reader;
51+
4652
/**
4753
* @param MagentoVersion $magentoVersion
4854
* @param Validator\ResultFactory $resultFactory
4955
* @param ElasticSearch $elasticSearch
5056
* @param OpenSearch $openSearch
57+
* @param Reader $reader
5158
*/
5259
public function __construct(
5360
MagentoVersion $magentoVersion,
5461
Validator\ResultFactory $resultFactory,
5562
ElasticSearch $elasticSearch,
56-
OpenSearch $openSearch
63+
OpenSearch $openSearch,
64+
Reader $reader
5765
) {
5866
$this->magentoVersion = $magentoVersion;
5967
$this->resultFactory = $resultFactory;
6068
$this->elasticsearch = $elasticSearch;
6169
$this->openSearch = $openSearch;
70+
$this->reader = $reader;
6271
}
6372

6473
/**
@@ -77,8 +86,11 @@ public function validate(): Validator\ResultInterface
7786
return $this->resultFactory->errorByCode(Error::DEPLOY_MAGENTO_VERSION_DOES_NOT_SUPPORT_OS);
7887
}
7988

89+
$modules = $this->reader->read()['modules'] ?? [];
90+
$liveSearchEnabled = $modules['Magento_LiveSearchAdapter'] ?? false;
91+
8092
if ($this->magentoVersion->isGreaterOrEqual('2.4.3-p2')
81-
&& !$this->openSearch->isInstalled()
93+
&& !$this->openSearch->isInstalled() && !$liveSearchEnabled
8294
) {
8395
return $this->resultFactory->errorByCode(Error::DEPLOY_OS_SERVICE_NOT_INSTALLED);
8496
}

src/Filesystem/DirectoryList.php

+20
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,26 @@ public function getWritableDirectories(): array
177177
}, $writableDirs);
178178
}
179179

180+
/**
181+
* Retrieves mount points for writable directories.
182+
*
183+
* @return array
184+
* @throws UndefinedPackageException
185+
*/
186+
public function getMountPoints(): array
187+
{
188+
$mountPoints = [
189+
static::DIR_ETC,
190+
static::DIR_VAR,
191+
static::DIR_MEDIA,
192+
static::DIR_STATIC
193+
];
194+
195+
return array_map(function ($path) {
196+
return $this->getPath($path, true);
197+
}, $mountPoints);
198+
}
199+
180200
/**
181201
* @return array
182202
*/

src/Service/Validator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class Validator
8383
'>=2.4.4' => '~7.10.0', // Greater than 7.10 isn't supported on cloud infrastructure.
8484
],
8585
ServiceInterface::NAME_OPENSEARCH => [
86-
'>=2.3.7-p3 <2.4.0 || >=2.4.3-p2 <2.4.6' => '~1.1.0 || ~1.2.1',
86+
'>=2.3.7-p3 <2.4.0 || >=2.4.3-p2 <2.4.6' => '~1.1.0 || 1.2.*',
8787
'>=2.4.6' => '^2',
8888
],
8989
ServiceInterface::NAME_RABBITMQ => [
+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?php
2+
/************************************************************************
3+
* Copyright 2023 Adobe
4+
* All Rights Reserved.
5+
*
6+
* NOTICE: All information contained herein is, and remains
7+
* the property of Adobe and its suppliers, if any. The intellectual
8+
* and technical concepts contained herein are proprietary to Adobe
9+
* and its suppliers and are protected by all applicable intellectual
10+
* property laws, including trade secret and copyright laws.
11+
* Dissemination of this information or reproduction of this material
12+
* is strictly forbidden unless prior written permission is obtained
13+
* from Adobe.
14+
* ************************************************************************
15+
*/
16+
declare(strict_types=1);
17+
18+
namespace Magento\MagentoCloud\Step\Build;
19+
20+
use Magento\MagentoCloud\Filesystem\Driver\File;
21+
use Magento\MagentoCloud\Filesystem\DirectoryList;
22+
use Magento\MagentoCloud\Step\StepInterface;
23+
use Psr\Log\LoggerInterface;
24+
25+
/**
26+
* Clear the mounted directories on the local filesystem before mounting the remote filesystem.
27+
*
28+
* This prevents warning messages that the mounted directories are not empty.
29+
*
30+
* {@inheritdoc}
31+
*/
32+
class ClearMountedDirectories implements StepInterface
33+
{
34+
/** @var LoggerInterface */
35+
private $logger;
36+
37+
/** @var File */
38+
private $file;
39+
40+
/** @var DirectoryList */
41+
private $directoryList;
42+
43+
public function __construct(
44+
LoggerInterface $logger,
45+
File $file,
46+
DirectoryList $directoryList
47+
) {
48+
$this->logger = $logger;
49+
$this->file = $file;
50+
$this->directoryList = $directoryList;
51+
}
52+
53+
/**
54+
* {@inheritDoc}
55+
*/
56+
public function execute()
57+
{
58+
foreach ($this->directoryList->getMountPoints() as $mount) {
59+
if ($this->file->isExists($mount) === false) {
60+
continue;
61+
}
62+
$this->logger->info(sprintf('Clearing the %s path of all files and folders', $mount));
63+
$this->file->clearDirectory($mount);
64+
}
65+
}
66+
}

src/Test/Functional/Acceptance/BackupDb24Cest.php

+4
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,10 @@ private function partRunDbDumpWithoutSplitDbArch(CliTester $I)
8888

8989
// Running database dump command with invalid database label
9090
$I->runDockerComposeCommand('run build cloud-build');
91+
92+
// Restore app/etc after build phase
93+
$I->runDockerComposeCommand('run build bash -c "cp -r /app/init/app/etc /app/app"');
94+
9195
$I->runDockerComposeCommand('run deploy ece-command db-dump incorrectName');
9296
$I->seeInOutput(
9397
'CRITICAL: Incorrect the database names: [ incorrectName ].'

src/Test/Functional/Acceptance/BackupDbCest.php

+4
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ private function partRunDbDumpWithoutSplitDbArch(CliTester $I)
8585

8686
// Running database dump command with invalid database label
8787
$I->runDockerComposeCommand('run build cloud-build');
88+
89+
// Restore app/etc after build phase
90+
$I->runDockerComposeCommand('run build bash -c "cp -r /app/init/app/etc /app/app"');
91+
8892
$I->runDockerComposeCommand('run deploy ece-command db-dump incorrectName');
8993
$I->seeInOutput(
9094
'CRITICAL: Incorrect the database names: [ incorrectName ].'

src/Test/Functional/Acceptance/ScenarioExtensibilityCest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function testScenarioExtensibilityAndPriority(\CliTester $I): void
5353
$I->runDockerComposeCommand('run build cloud-build');
5454
$I->startEnvironment();
5555

56-
$cloudLog = $I->grabFileContent('/var/log/cloud.log', Docker::BUILD_CONTAINER);
56+
$cloudLog = $I->grabFileContent('/init/var/log/cloud.log', Docker::BUILD_CONTAINER);
5757

5858
$I->assertStringContainsString(
5959
'Step "copy-sample-data" was skipped',

src/Test/Functional/Acceptance/SplitDbCest.php

+3
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ public function testSplitDb(CliTester $I, Example $data)
7171
$I->writeServicesYaml($services);
7272
$I->writeAppMagentoYaml($magentoApp);
7373

74+
// Restore app/etc after build phase
75+
$I->runDockerComposeCommand('run build bash -c "cp -r /app/init/app/etc /app/app"');
76+
7477
// Deploy 'Split Db' in an environment with prepared architecture. Case with upgrade
7578
$I->generateDockerCompose('--mode=production');
7679
foreach ($this->variationsDataPartWithSplitDbArch() as $variationData) {

src/Test/Functional/Acceptance/SplitDbWizardCest.php

+2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ public function testSplitDbWizard(CliTester $I, Example $data)
5959
$appMagento['relationships']['database-sales'] = 'mysql-sales:mysql';
6060
$I->writeServicesYaml($services);
6161
$I->writeAppMagentoYaml($appMagento);
62+
// Restore app/etc after build phase
63+
$I->runDockerComposeCommand('run build bash -c "cp -r /app/init/app/etc /app/app"');
6264
$I->generateDockerCompose('--mode=production');
6365

6466
foreach ($this->variationsData() as $variationData) {

src/Test/Functional/Acceptance/WizardScdCest.php

+6-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ public function _before(\CliTester $I): void
3737
public function testDefault(\CliTester $I): void
3838
{
3939
$I->runDockerComposeCommand('run build cloud-build');
40-
$I->assertFalse($I->runDockerComposeCommand('run build ece-command wizard:scd-on-build'));
40+
$I->runDockerComposeCommand('run deploy cloud-deploy');
41+
$I->assertFalse($I->runDockerComposeCommand('run deploy ece-command wizard:scd-on-build'));
4142
$I->seeInOutput(' - No stores/website/locales found in');
4243
$I->seeInOutput('SCD on build is disabled');
4344
}
@@ -50,7 +51,8 @@ public function testScdInBuildIsEnabled(\CliTester $I): void
5051
{
5152
$I->copyFileToWorkDir('files/scdinbuild/config.php', 'app/etc/config.php');
5253
$I->runDockerComposeCommand('run build cloud-build');
53-
$I->assertTrue($I->runDockerComposeCommand('run build ece-command wizard:scd-on-build'));
54+
$I->runDockerComposeCommand('run deploy cloud-deploy');
55+
$I->assertTrue($I->runDockerComposeCommand('run deploy ece-command wizard:scd-on-build'));
5456
$I->seeInOutput('SCD on build is enabled');
5557
}
5658

@@ -62,7 +64,8 @@ public function testScdOnDemandIsEnabled(\CliTester $I): void
6264
{
6365
$I->copyFileToWorkDir('files/scdondemand/.magento.env.yaml', '.magento.env.yaml');
6466
$I->runDockerComposeCommand('run build cloud-build');
65-
$I->assertTrue($I->runDockerComposeCommand('run build ece-command wizard:scd-on-demand'));
67+
$I->runDockerComposeCommand('run deploy cloud-deploy');
68+
$I->assertTrue($I->runDockerComposeCommand('run deploy ece-command wizard:scd-on-demand'));
6669
$I->seeInOutput('SCD on demand is enabled');
6770
}
6871
}

0 commit comments

Comments
 (0)