From 7a158cbcd80eee6f2ad97bf097707f8d1639578f Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Wed, 10 Jul 2024 23:24:17 +0200 Subject: [PATCH] Replace pinned Jaeger version with a parameter/default=latest (#5729) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![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. --- - [ ] 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). --------- Signed-off-by: Mend Renovate Signed-off-by: Yuri Shkuro Co-authored-by: Yuri Shkuro --- plugin/storage/scylladb/docker-compose.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/plugin/storage/scylladb/docker-compose.yml b/plugin/storage/scylladb/docker-compose.yml index eecfb83fbba..2e5a69c2a44 100644 --- a/plugin/storage/scylladb/docker-compose.yml +++ b/plugin/storage/scylladb/docker-compose.yml @@ -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 @@ -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 @@ -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 @@ -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" ]