-
Notifications
You must be signed in to change notification settings - Fork 280
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
feat: split osd core test into ci groups #4784
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,111 @@ ci: | |
image: | ||
name: opensearchstaging/ci-runner:ci-runner-rockylinux8-opensearch-dashboards-integtest-v4 | ||
components: | ||
- name: OpenSearch-Dashboards | ||
- name: OpenSearch-Dashboards-ci-group-1 | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
additional-cluster-configs: | ||
vis_builder.enabled: true | ||
data_source.enabled: true | ||
savedObjects.maxImportPayloadBytes: 10485760 | ||
server.maxPayloadBytes: 1759977 | ||
logging.json: false | ||
data.search.aggs.shardDelay.enabled: true | ||
csp.warnLegacyBrowsers: false | ||
- name: OpenSearch-Dashboards-ci-group-2 | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
additional-cluster-configs: | ||
vis_builder.enabled: true | ||
data_source.enabled: true | ||
savedObjects.maxImportPayloadBytes: 10485760 | ||
server.maxPayloadBytes: 1759977 | ||
logging.json: false | ||
data.search.aggs.shardDelay.enabled: true | ||
csp.warnLegacyBrowsers: false | ||
- name: OpenSearch-Dashboards-ci-group-3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hey @SuZhou-Joe may I know what tests or components part of these groups ? example for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The specs are written in the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would like to get this change documentation somewhere (may be in https://github.com/opensearch-project/opensearch-build/wiki/Testing-the-Distribution). |
||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
additional-cluster-configs: | ||
vis_builder.enabled: true | ||
data_source.enabled: true | ||
savedObjects.maxImportPayloadBytes: 10485760 | ||
server.maxPayloadBytes: 1759977 | ||
logging.json: false | ||
data.search.aggs.shardDelay.enabled: true | ||
csp.warnLegacyBrowsers: false | ||
- name: OpenSearch-Dashboards-ci-group-4 | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
additional-cluster-configs: | ||
vis_builder.enabled: true | ||
data_source.enabled: true | ||
savedObjects.maxImportPayloadBytes: 10485760 | ||
server.maxPayloadBytes: 1759977 | ||
logging.json: false | ||
data.search.aggs.shardDelay.enabled: true | ||
csp.warnLegacyBrowsers: false | ||
- name: OpenSearch-Dashboards-ci-group-5 | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
additional-cluster-configs: | ||
vis_builder.enabled: true | ||
data_source.enabled: true | ||
savedObjects.maxImportPayloadBytes: 10485760 | ||
server.maxPayloadBytes: 1759977 | ||
logging.json: false | ||
data.search.aggs.shardDelay.enabled: true | ||
csp.warnLegacyBrowsers: false | ||
- name: OpenSearch-Dashboards-ci-group-6 | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
additional-cluster-configs: | ||
vis_builder.enabled: true | ||
data_source.enabled: true | ||
savedObjects.maxImportPayloadBytes: 10485760 | ||
server.maxPayloadBytes: 1759977 | ||
logging.json: false | ||
data.search.aggs.shardDelay.enabled: true | ||
csp.warnLegacyBrowsers: false | ||
- name: OpenSearch-Dashboards-ci-group-7 | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
additional-cluster-configs: | ||
vis_builder.enabled: true | ||
data_source.enabled: true | ||
savedObjects.maxImportPayloadBytes: 10485760 | ||
server.maxPayloadBytes: 1759977 | ||
logging.json: false | ||
data.search.aggs.shardDelay.enabled: true | ||
csp.warnLegacyBrowsers: false | ||
- name: OpenSearch-Dashboards-ci-group-8 | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
- without-security | ||
additional-cluster-configs: | ||
vis_builder.enabled: true | ||
data_source.enabled: true | ||
savedObjects.maxImportPayloadBytes: 10485760 | ||
server.maxPayloadBytes: 1759977 | ||
logging.json: false | ||
data.search.aggs.shardDelay.enabled: true | ||
csp.warnLegacyBrowsers: false | ||
- name: OpenSearch-Dashboards-ci-group-9 | ||
integ-test: | ||
test-configs: | ||
- with-security | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this would throw error saying component not found as there is a mismatch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we are good from the python side as it only checks test manifest and gets list of components. If we can handle it from Jenkinsfile side as mentioned in my comment below then we are good. Right?