Skip to content
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
1 change: 1 addition & 0 deletions jenkins/check-for-build.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ pipeline {
}
triggers {
parameterizedCron '''
H 1 * * * %INPUT_MANIFEST=2.19.4/opensearch-2.19.4.yml;TARGET_JOB_NAME=distribution-build-opensearch;BUILD_PLATFORM=linux windows;BUILD_DISTRIBUTION=tar rpm deb zip;TEST_MANIFEST=2.19.4/opensearch-2.19.4-test.yml;TEST_PLATFORM=linux;TEST_DISTRIBUTION=tar
H 1 * * * %INPUT_MANIFEST=3.3.0/opensearch-dashboards-3.3.0.yml;TARGET_JOB_NAME=distribution-build-opensearch-dashboards;BUILD_PLATFORM=linux windows;BUILD_DISTRIBUTION=tar rpm deb zip;TEST_MANIFEST=3.3.0/opensearch-dashboards-3.3.0-test.yml;TEST_PLATFORM=linux;TEST_DISTRIBUTION=tar
H 1 * * * %INPUT_MANIFEST=3.3.0/opensearch-3.3.0.yml;TARGET_JOB_NAME=distribution-build-opensearch;BUILD_PLATFORM=linux windows;BUILD_DISTRIBUTION=tar rpm deb zip
'''
Expand Down
190 changes: 190 additions & 0 deletions manifests/2.19.4/opensearch-2.19.4-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
---
schema-version: '1.1'
name: OpenSearch
ci:
image:
linux:
tar:
name: opensearchstaging/ci-runner:ci-runner-al2-opensearch-build-v1
args: -e JAVA_HOME=/opt/java/openjdk-21 -u 1000 --cpus 4 -m 16g
deb:
name: opensearchstaging/ci-runner:ci-runner-ubuntu2404-systemd-base-integtest-v1
args: -e JAVA_HOME=/opt/java/openjdk-21 --entrypoint=/usr/lib/systemd/systemd
-u root --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:rw --cgroupns=host
--cpus 4 -m 16g
rpm:
name: opensearchstaging/ci-runner:ci-runner-almalinux8-systemd-base-integtest-v1
args: -e JAVA_HOME=/opt/java/openjdk-21 --entrypoint=/usr/lib/systemd/systemd
-u root --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:rw --cgroupns=host
--cpus 4 -m 16g
windows:
zip:
name: opensearchstaging/ci-runner:ci-runner-windows2019-opensearch-build-v1
args: -u ContainerAdministrator
components:
- name: OpenSearch
smoke-test:
test-spec: opensearch.yml
- name: alerting
integ-test:
test-configs:
- with-security
- without-security
additional-cluster-configs:
plugins.destination.host.deny_list:
- 10.0.0.0/8
- 127.0.0.1
bwc-test:
test-configs:
- with-security
- name: anomaly-detection
integ-test:
build-dependencies:
- job-scheduler
test-configs:
- with-security
- without-security
bwc-test:
test-configs:
- with-security
- name: flow-framework
integ-test:
test-configs:
- with-security
- without-security
- name: asynchronous-search
integ-test:
test-configs:
- with-security
- without-security
bwc-test:
test-configs:
- with-security
- name: cross-cluster-replication
integ-test:
topology:
- cluster_name: leader
data_nodes: 2
- cluster_name: follower
data_nodes: 2
test-configs:
- with-security
- without-security
- name: geospatial
integ-test:
test-configs:
- with-security
- without-security
smoke-test:
test-spec: geospatial.yml
- name: index-management
integ-test:
build-dependencies:
- job-scheduler
test-configs:
- with-security
- without-security
additional-cluster-configs:
path.repo:
- /tmp
bwc-test:
test-configs:
- with-security
smoke-test:
test-spec: index-management.yml
- name: k-NN
integ-test:
test-configs:
- with-security
- without-security
additional-cluster-configs:
node.attr.knn_cb_tier: integ
path.repo:
- /tmp
- logs
smoke-test:
test-spec: k-NN.yml
- name: ml-commons
integ-test:
test-configs:
- with-security
- without-security
- name: opensearch-learning-to-rank-base
integ-test:
test-configs:
- with-security
- without-security
- name: neural-search
integ-test:
test-configs:
- with-security
- without-security
- name: notifications
working-directory: notifications
integ-test:
test-configs:
- with-security
- without-security
bwc-test:
test-configs:
- with-security
- name: opensearch-observability
integ-test:
test-configs:
- with-security
- without-security
bwc-test:
test-configs:
- with-security
- name: opensearch-reports
integ-test:
test-configs:
- with-security
- without-security
- name: security
integ-test:
test-configs:
- with-security
smoke-test:
test-spec: security.yml
- name: security-analytics
integ-test:
test-configs:
- with-security
- without-security
- name: sql
integ-test:
test-configs:
- with-security
- without-security
additional-cluster-configs:
script.context.field.max_compilations_rate: 1000/1m
plugins.query.datasources.encryption.masterkey: 4fc8fee6a3fd7d6ca01772e5
bwc-test:
test-configs:
- with-security
smoke-test:
test-spec: sql.yml
- name: custom-codecs
integ-test:
test-configs:
- with-security
- without-security
- name: skills
integ-test:
test-configs:
- with-security
- without-security
- name: query-insights
integ-test:
test-configs:
- with-security
- without-security
- name: opensearch-system-templates
integ-test:
test-configs:
- with-security
- without-security
additional-cluster-configs:
opensearch.experimental.feature.application_templates.enabled: true
cluster.application_templates.enabled: true
Loading