Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds index management main to the 1.2 manifest #848

Merged
merged 2 commits into from
Nov 1, 2021
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
6 changes: 6 additions & 0 deletions manifests/1.2.0/opensearch-1.2.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ components:
checks:
- gradle:properties:version
- gradle:dependencies:opensearch.version: alerting
- name: index-management
repository: https://github.com/opensearch-project/index-management.git
ref: "main"
checks:
- gradle:properties:version
- gradle:dependencies:opensearch.version
- name: k-NN
repository: https://github.com/opensearch-project/k-NN.git
ref: "main"
Expand Down
2 changes: 1 addition & 1 deletion tests/tests_manifests/test_input_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def test_1_2(self):
self.assertEqual(manifest.build.version, "1.2.0")
self.assertEqual(manifest.ci.image.name, "opensearchstaging/ci-runner:centos7-x64-arm64-jdkmulti-node10.24.1-cypress6.9.1-20211028")
self.assertEqual(manifest.ci.image.args, "-e JAVA_HOME=/usr/lib/jvm/adoptopenjdk-14-hotspot")
self.assertEqual(len(manifest.components), 5)
self.assertEqual(len(manifest.components), 6)
self.assertEqual(len(list(manifest.components.select(focus="common-utils"))), 1)
# opensearch component
opensearch_component = manifest.components["OpenSearch"]
Expand Down