fix(infra): correct Jaeger image tag #58
Reference in New Issue
Block a user
Delete Branch "fix/infra/jaeger-image-tag"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
jaegertracing/all-in-one:1.62doesn't exist on Docker Hub — I picked it from memory in #57 without verification. Jaeger 1.x publishes only full-semver tags (1.X.Y), not rolling minor (1.X) tags.Activating
--profile observabilityerrored at image-pull time:Pin to
1.76.0(latest stable in the 1.x line, verified against Docker Hub).Test plan
cd infra/local && docker compose -f dev.compose.yml --profile observability up -d→ all images pull, all services healthy.`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).