-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use docker compose for cassandra integration tests (#5520)
## Which problem is this PR solving? - #5485 ## Description of the changes - updated `cassandra-integration-test.sh` to use docker compose - update dependabot config ## How was this change tested? - `bash scripts/cassandra-integration-test.sh 3 v003 v1` ` bash scripts/cassandra-integration-test.sh 3 v003 v2 ` bash `scripts/cassandra-integration-test.sh 4 v004 v1` `scripts/cassandra-integration-test.sh 4 v004 v2` ## Checklist - [ ] I have read https://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md - [ ] I have signed all commits - [ ] I have added unit tests for the new functionality - [ ] I have run lint and test steps successfully - for `jaeger`: `make lint test` - for `jaeger-ui`: `yarn lint` and `yarn test` --------- Signed-off-by: Your Name <[email protected]> Co-authored-by: Your Name <[email protected]>
- Loading branch information
1 parent
c74aec1
commit 5863430
Showing
5 changed files
with
56 additions
and
20 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
version: '3.8' | ||
|
||
services: | ||
cassandra: | ||
image: cassandra:3.11 | ||
ports: | ||
- "9042:9042" | ||
- "9160:9160" | ||
networks: | ||
- cassandra-net | ||
healthcheck: | ||
test: ["CMD", "cqlsh", "-e", "describe keyspaces"] | ||
interval: 30s | ||
timeout: 10s | ||
retries: 5 | ||
|
||
networks: | ||
cassandra-net: | ||
driver: bridge |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
version: '3.8' | ||
|
||
services: | ||
cassandra: | ||
image: cassandra:4.0 | ||
ports: | ||
- "9042:9042" | ||
- "9160:9160" | ||
networks: | ||
- cassandra-net | ||
healthcheck: | ||
test: ["CMD", "cqlsh", "-e", "describe keyspaces"] | ||
interval: 30s | ||
timeout: 10s | ||
retries: 5 | ||
|
||
networks: | ||
cassandra-net: | ||
driver: bridge |
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