-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from magento-commerce/develop
MCLOUD-8486: Release Cloud Tools
- Loading branch information
Showing
114 changed files
with
1,559 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"templateVersion": "0.1", | ||
"product": { | ||
"name": "Magento Cloud Docker", | ||
"description": "The Magento Cloud Docker implementation deploys Cloud projects to a local workstation so that you can develop and test your code in a simulated Cloud environment" | ||
}, | ||
"contacts": { | ||
"team": { | ||
"name": "Magic Mountain", | ||
"DL": "Grp-magento-cloud-all", | ||
"slackChannel": "magic_mountain" | ||
} | ||
}, | ||
"ticketTracker": { | ||
"functionalJiraQueue": { | ||
"projectKey": "MCLOUD" | ||
}, | ||
"securityJiraQueue": { | ||
"projectKey": "MAGREQ", | ||
"component": "Magento Cloud Engineering" | ||
} | ||
}, | ||
"staticScan": { | ||
"enable": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM opensearchproject/opensearch:1.1.0 | ||
|
||
USER root | ||
RUN yum -y install zip && \ | ||
zip -q -d /usr/share/opensearch/lib/log4j-core-*.jar org/apache/logging/log4j/core/lookup/JndiLookup.class && \ | ||
yum remove -y zip && \ | ||
yum -y clean all && \ | ||
rm -rf /var/cache | ||
USER opensearch | ||
|
||
RUN bin/opensearch-plugin install -b analysis-icu && \ | ||
bin/opensearch-plugin install -b analysis-phonetic | ||
|
||
ADD docker-healthcheck.sh /docker-healthcheck.sh | ||
ADD docker-entrypoint.sh /docker-entrypoint.sh | ||
|
||
HEALTHCHECK --retries=3 CMD ["bash", "/docker-healthcheck.sh"] | ||
|
||
ENTRYPOINT ["/docker-entrypoint.sh"] | ||
|
||
EXPOSE 9200 9300 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
set -eo pipefail | ||
|
||
if [[ -n "$OS_PLUGINS" ]]; then | ||
echo "Installing plugins: $OS_PLUGINS" | ||
for PLUGIN in $OS_PLUGINS | ||
do | ||
./bin/opensearch-plugin install -b "$PLUGIN" | ||
done | ||
fi | ||
|
||
/bin/bash /usr/share/opensearch/opensearch-docker-entrypoint.sh |
2 changes: 1 addition & 1 deletion
2
...s/elasticsearch/5.2/docker-healthcheck.sh → images/opensearch/1.1/docker-healthcheck.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM opensearchproject/opensearch:1.2.1 | ||
|
||
USER root | ||
RUN yum -y install zip && \ | ||
zip -q -d /usr/share/opensearch/lib/log4j-core-*.jar org/apache/logging/log4j/core/lookup/JndiLookup.class && \ | ||
yum remove -y zip && \ | ||
yum -y clean all && \ | ||
rm -rf /var/cache | ||
USER opensearch | ||
|
||
RUN bin/opensearch-plugin install -b analysis-icu && \ | ||
bin/opensearch-plugin install -b analysis-phonetic | ||
|
||
ADD docker-healthcheck.sh /docker-healthcheck.sh | ||
ADD docker-entrypoint.sh /docker-entrypoint.sh | ||
|
||
HEALTHCHECK --retries=3 CMD ["bash", "/docker-healthcheck.sh"] | ||
|
||
ENTRYPOINT ["/docker-entrypoint.sh"] | ||
|
||
EXPOSE 9200 9300 |
Oops, something went wrong.