-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support the latest versions of Logstash and the AWS SDK for Ruby. (#260)
Support the latest versions of Logstash and the AWS SDK for Ruby. Adds the account_id configuration to the AWSIAMCredential struct to work with the latest versions of the AWS SDK for Ruby. Test against the latest versions of Logstash during the integration testing to also test against these versions of the AWS SDK. Use docker compose instead of docker-compose. Resolves #258 Signed-off-by: David Venable <[email protected]>
- Loading branch information
Showing
9 changed files
with
21 additions
and
19 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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#!/bin/bash | ||
|
||
# This is intended to be run inside the docker container as the command of the docker-compose. | ||
# This is intended to be run inside the docker container as the command of the docker compose. | ||
set -ex | ||
|
||
cd scripts/opendistro | ||
|
||
docker-compose up --exit-code-from logstash | ||
docker compose up --exit-code-from logstash |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#!/bin/bash | ||
|
||
# This is intended to be run inside the docker container as the command of the docker-compose. | ||
# This is intended to be run inside the docker container as the command of the docker compose. | ||
set -ex | ||
|
||
cd scripts/opensearch | ||
|
||
docker-compose up --exit-code-from logstash | ||
docker compose up --exit-code-from logstash |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/bash | ||
|
||
# This is intended to be run inside the docker container as the command of the docker-compose. | ||
# This is intended to be run inside the docker container as the command of the docker compose. | ||
set -ex | ||
|
||
cd scripts/unit-test; | ||
docker-compose up --exit-code-from logstash logstash | ||
docker compose up --exit-code-from logstash logstash |
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