Skip to content
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

Replace pinned Jaeger version with a parameter/default=latest #5729

Merged
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
14 changes: 10 additions & 4 deletions plugin/storage/scylladb/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# docker compose file to test Scylla with Jaeger.

# Disclaimer: This defaults to using 'latest' image tag for Jaeger images,
# which can be stale in your local repository. In case of issues try running
# against the actual Jaeger version like JAEGER_VERSION=1.59.0.

networks:
jaeger-scylladb:

services:
collector:
restart: unless-stopped
image: jaegertracing/jaeger-collector:1.58
image: jaegertracing/jaeger-collector:${JAEGER_VERSION:-latest}
environment:
SPAN_STORAGE_TYPE: cassandra
CASSANDRA_SERVERS: scylladb
Expand All @@ -15,7 +21,7 @@ services:
- cassandra-schema

web:
image: jaegertracing/jaeger-query:1.58
image: jaegertracing/jaeger-query:${JAEGER_VERSION:-latest}
restart: unless-stopped
ports:
- 16686:16686
Expand All @@ -30,7 +36,7 @@ services:
- cassandra-schema

cassandra-schema:
image: jaegertracing/jaeger-cassandra-schema:1.58
image: jaegertracing/jaeger-cassandra-schema:${JAEGER_VERSION:-latest}
environment:
CASSANDRA_PROTOCOL_VERSION: 4
CASSANDRA_VERSION: 4
Expand Down Expand Up @@ -77,7 +83,7 @@ services:
- jaeger-scylladb

hotrod:
image: jaegertracing/example-hotrod:1.58
image: jaegertracing/example-hotrod:${JAEGER_VERSION:-latest}
ports:
- 8080:8080
command: [ "all" ]
Expand Down
Loading