Fix container integration test tags - #2270
Open
Paamicky wants to merge 1 commit into
Open
Conversation
…mis-tagged images
Paamicky
marked this pull request as ready for review
September 3, 2026 18:03
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.
Description of the issue
Container integration tests (ECS OTLP, EKS Container Insights) failed with 0 metrics. The per-commit image cwagent-integration-test: could resolve to a stale agent build. The : manifest was built from mutable, non-SHA arch tags (:linux-amd64/:linux-arm64) overwritten every build, so a commit's manifest could capture another commit's arch image. The stale agent couldn't translate the opentelemetry config, crash-looped on startup, and exported nothing.
Description of changes
:linux-amd64to:linux-amd64-${{ github.sha }}:linux-arm64to:linux-arm64-${{ github.sha }}create --amendnow points at the SHA-scoped arch tagsContainer image path only; host/Windows/mac and the build cache are untouched.
License
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
Tests
Built artifacts for the branch (
build-test-artifactswithrun-tests=false), verified in ECR that thesharesolves to the correct image (arch tagslinux-amd64-<sha>/linux-arm64-<sha>present; OTLP integration testj passesRequirements
make fmtandmake fmt-shmake lint