-
Notifications
You must be signed in to change notification settings - Fork 90
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
Multi-Arch Docker Image Releases #214
Conversation
Signed-off-by: Ken Sipe <kensipe@gmail.com>
|
||
docker buildx build . -t "kudobuilder/kuttl:v$GIT_VERSION" --platform linux/amd64,linux/arm64,linux/ppc64le --push | ||
|
||
echo "docker build and push was successful! ヽ(•‿•)ノ" |
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.
Well, we have no idea whether it was, because we don't check docker buildx
exit code 😉
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.
ha... thank you sir!
hack/docker-release.sh
Outdated
docker buildx build . -t "kudobuilder/kuttl:v$GIT_VERSION" --platform linux/amd64,linux/arm64,linux/ppc64le --push | ||
|
||
echo "docker build and push was successful! ヽ(•‿•)ノ" | ||
exit 0 |
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.
This line is not really needed with set +e
Co-authored-by: Marcin Owsiany <mowsiany@D2iQ.com>
Signed-off-by: Ken Sipe <kensipe@gmail.com>
Provides the ability to release multi platform, multi-architecture docker images in docker hub along with documentation.