Skip to content

Commit fa500d5

Browse files
committed
Update the integration tests to use Logstash 8.3.2 by default instead of 7.13.2. Also add v8.3.2 in the test matrix for the github CI workflow.
1 parent 3ade72f commit fa500d5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
Unit-test:
1212
strategy:
1313
matrix:
14-
logstash: [ "7.16.3", "7.17.1" ]
14+
logstash: [ "7.16.3", "7.17.1", "8.3.2" ]
1515
name: Unit Test logstash-output-opensearch
1616
runs-on: ubuntu-latest
1717
env:
@@ -33,7 +33,7 @@ jobs:
3333
Integration-Test-OpenSearch:
3434
strategy:
3535
matrix:
36-
logstash: [ "7.16.3", "7.17.1" ]
36+
logstash: [ "7.16.3", "7.17.1", "8.3.2" ]
3737
opensearch: [ "1.2.1" ]
3838
secure: [ true, false ]
3939

@@ -78,4 +78,4 @@ jobs:
7878
7979
- name: Run Integration tests against OpenDistro-${{ matrix.opendistro }}-security-${{ matrix.secure }} for logstash ${{ matrix.logstash }}
8080
run: |
81-
./scripts/opendistro/docker-run.sh
81+
./scripts/opendistro/docker-run.sh

scripts/opensearch/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ services:
77
context: ../../
88
dockerfile: scripts/Dockerfile
99
args:
10-
- LOGSTASH_VERSION=${LOGSTASH_VERSION:-7.13.2}
10+
- LOGSTASH_VERSION=${LOGSTASH_VERSION:-8.3.2}
1111
command: scripts/run.sh
1212
env_file: ../docker.env
1313
environment:
1414
- SPEC_OPTS
1515
- LOG_LEVEL # devutils (>= 2.0.4) reads the ENV and sets LS logging
16-
tty: true
16+
tty: true

scripts/unit-test/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ services:
77
context: ../../
88
dockerfile: scripts/Dockerfile
99
args:
10-
- LOGSTASH_VERSION=${LOGSTASH_VERSION:-7.13.2}
10+
- LOGSTASH_VERSION=${LOGSTASH_VERSION:-8.3.2}
1111
command: /usr/share/plugins/plugin/scripts/unit-test/logstash-run.sh
1212
env_file: ../docker.env
1313
environment:
1414
- SPEC_OPTS
1515
- LOG_LEVEL # devutils (>= 2.0.4) reads the ENV and sets LS logging
16-
tty: true
16+
tty: true

0 commit comments

Comments
 (0)