Skip to content

Commit

Permalink
Replace pinned Jaeger version with a parameter/default=latest (jaeger…
Browse files Browse the repository at this point in the history
…tracing#5729)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| jaegertracing/example-hotrod | minor | `1.58` -> `1.59` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/jaegertracing/jaeger).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJjaGFuZ2Vsb2c6ZGVwZW5kZW5jaWVzIl19-->

---------

Signed-off-by: Mend Renovate <[email protected]>
Signed-off-by: Yuri Shkuro <[email protected]>
Co-authored-by: Yuri Shkuro <[email protected]>
  • Loading branch information
renovate-bot and yurishkuro authored Jul 10, 2024
1 parent 336a615 commit 7a158cb
Showing 1 changed file with 10 additions and 4 deletions.
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

0 comments on commit 7a158cb

Please sign in to comment.