fix(infra): correct Jaeger image tag
CI / commits (pull_request) Successful in 1m11s
CI / scan (pull_request) Successful in 1m20s
CI / check (pull_request) Successful in 1m22s
CI / a11y (pull_request) Successful in 1m14s
CI / perf (pull_request) Successful in 2m41s

`jaegertracing/all-in-one:1.62` does not exist on Docker Hub —
Jaeger 1.x publishes only full-semver tags (1.X.Y), not rolling
minor tags. Activating the `observability` profile failed at pull
time:

    Error response from daemon: failed to resolve reference
    "docker.io/jaegertracing/all-in-one:1.62": ... not found

Pin to `1.76.0`, the most recent stable in the 1.x line. Renovate's
docker-compose manager will surface future bumps automatically
(gated behind dashboard approval for majors per renovate.json).
This commit is contained in:
Julien Gautier
2026-05-08 20:03:38 +02:00
parent 0f00d6d93f
commit 9aaf9f1f45
+1 -1
View File
@@ -123,7 +123,7 @@ services:
# Jaeger on the internal Compose network.
# ------------------------------------------------------------------
jaeger:
image: jaegertracing/all-in-one:1.62
image: jaegertracing/all-in-one:1.76.0
container_name: apf-portal-jaeger
restart: unless-stopped
profiles: [observability]