-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support either ElasticSearch or OpenSearch in sandbox
OpenSearch has been built for fewer platforms than Elasticsearch. Support either OpenSearch or Elasticsearch depending on the configuration in the Architect project manifest.
- Loading branch information
Showing
5 changed files
with
106 additions
and
42 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
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,60 @@ | ||
/*! | ||
* Copyright © 2023 United States Government as represented by the | ||
* Administrator of the National Aeronautics and Space Administration. | ||
* All Rights Reserved. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
export type SandboxEngine = 'elasticsearch' | 'opensearch' | ||
|
||
export const manifest = [ | ||
{ | ||
engine: 'elasticsearch', | ||
type: 'Linux', | ||
arch: 'x64', | ||
url: 'https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.6.2-linux-x86_64.tar.gz', | ||
}, | ||
{ | ||
engine: 'elasticsearch', | ||
type: 'Linux', | ||
arch: 'arm64', | ||
url: 'https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.6.2-linux-aarch64.tar.gz', | ||
}, | ||
{ | ||
engine: 'elasticsearch', | ||
type: 'Darwin', | ||
arch: 'x64', | ||
url: 'https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.6.2-darwin-x86_64.tar.gz', | ||
}, | ||
{ | ||
engine: 'elasticsearch', | ||
type: 'Darwin', | ||
arch: 'arm64', | ||
url: 'https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.6.2-darwin-aarch64.tar.gz', | ||
}, | ||
{ | ||
engine: 'elasticsearch', | ||
type: 'Windows_NT', | ||
arch: 'x64', | ||
url: 'https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.6.2-windows-x86_64.zip', | ||
}, | ||
{ | ||
engine: 'opensearch', | ||
type: 'Linux', | ||
arch: 'x64', | ||
url: 'https://artifacts.opensearch.org/releases/bundle/opensearch/2.11.0/opensearch-2.11.0-linux-x64.tar.gz', | ||
}, | ||
{ | ||
engine: 'opensearch', | ||
type: 'Linux', | ||
arch: 'arm64', | ||
url: 'https://artifacts.opensearch.org/releases/bundle/opensearch/2.11.0/opensearch-2.11.0-linux-arm64.tar.gz', | ||
}, | ||
{ | ||
engine: 'opensearch', | ||
type: 'Windows_NT', | ||
arch: 'x64', | ||
url: 'https://artifacts.opensearch.org/releases/bundle/opensearch/2.11.0/opensearch-2.11.0-windows-x64.zip', | ||
}, | ||
] |
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