Build the locust image for the cluster's architecture#543
Open
Chuang Wang (chuangw6) wants to merge 1 commit into
Open
Build the locust image for the cluster's architecture#543Chuang Wang (chuangw6) wants to merge 1 commit into
Chuang Wang (chuangw6) wants to merge 1 commit into
Conversation
docker build defaults to the build host's platform. On an Apple Silicon workstation that produces an arm64 image, the push succeeds, and nothing complains until the kubelet on an amd64 node reports no match for platform in manifest: not found two steps later, which reads like a registry or IAM problem rather than a build one. Pin the build to linux/amd64, overridable via LOCUST_IMAGE_PLATFORM for arm64 node pools (T2A, Axion).
This was referenced Jul 27, 2026
Julian Gutierrez Oschmann (juli4n)
requested a review
from Max Smythe (maxsmythe)
July 27, 2026 16:41
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.
build_and_push.shrandocker buildwith no--platform, so an arm64workstation produced an arm64 image while GKE nodes (c3-standard-4) are
amd64. The push succeeds and nothing fails until the kubelet pulls, two
steps later:
Default to linux/amd64, overridable via LOCUST_IMAGE_PLATFORM for arm64
node pools (T2A, Axion).
Verified: pushed manifest reports linux/amd64 and the locust pod reaches
3/3 Running.
Stacked on #542.