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.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add s390x support on multiarch docker images #2948
Add s390x support on multiarch docker images #2948
Changes from 16 commits
bae83d3
4c6cabb
c0de24a
d973031
5273aa3
ef2e8a2
edb391d
7974892
a0362fc
2613b6c
119d8e8
321907c
170b373
23ede72
54ba010
027376a
5a6b268
2960e88
ba3e9bc
2acd49f
4e4fcbb
878e983
18aad23
56f3e4f
c492340
a62c82f
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we encode the versions of base images instead of giving them a stable local name? When we include versions we're creating cross-script dependencies which require other scripts to be cognizant of the versions, e.g.
base_debug_img_arg="--build-arg base_image=localhost:5000/baseimg:1.0.0-alpine-3.13 --build-arg debug_image=golang:1.15-alpine "
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, you're right, I'll change the names of base image and debug image to stable local names. Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @yurishkuro , I've changed the names of
baseimg
anddebugimg
to stable local names. I still set thedebug_image
arg togolang:1.15-alpine
for building multi-arch release version images inbuild-all-in-one-image.sh
andbuild-upload-docker-images.sh
, since the builtdebugimg
doe not supports390x
yet (due to lack ofgo-delve
support on s390x). For building amd64 debug version images, thedebug_image
arg is set to the stable local name.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @yurishkuro , I've made some changes to remove cross-script dependencies of
debug_image
image names. Please take a look when you are available. Thanks!