Pin tempo digest and set pull_policy: missing on compose services#1059
Merged
SachaProbo merged 2 commits intomainfrom Apr 16, 2026
Merged
Pin tempo digest and set pull_policy: missing on compose services#1059SachaProbo merged 2 commits intomainfrom
SachaProbo merged 2 commits intomainfrom
Conversation
…rvices Avoid unnecessary Docker registry checks on stack-up by setting pull_policy: missing on every service. Also pin the tempo image to its sha256 digest for reproducibility, consistent with all other services. Signed-off-by: Bryan Frimin <bryan@getprobo.com>
Authenticate to Docker Hub in jobs that pull images (build-snapshot-docker, test-e2e, build-docker) to avoid unauthenticated rate limits. Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
grafana/tempoimage to its sha256 digest for reproducibility, consistent with all other services incompose.yaml.pull_policy: missingto all 11 compose services to skip Docker registry checks when images already exist locally, avoiding Docker Hub rate limit errors duringmake stack-up.Test plan
make stack-upand verify no "Pulling" output for already-cached imagesmake stack-down && make stack-upto confirm services start correctlySummary by cubic
Pinned the
grafana/tempoimage to a SHA256 digest and setpull_policy: missingon all services incompose.yaml. Added Docker Hub authentication in CI viadocker/login-actionto avoid unauthenticated pull limits, makingmake stack-upand CI builds/tests faster and more reliable.Written for commit 1d539f8. Summary will update on new commits.