-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Cloud Native Buildpacks with arm64 #9508
Comments
I face the same issue with:
|
I upgraded to macOS 15.1 but face the same error. |
@ipolonskij - I think it's because CNBs in Skaffold are only supported on x86_64, not on arm yet. I've been tinkering with a patch but it depends on the CNB you use as well. Most don't support arm yet, though the Heroku CNB does. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Expected behavior
When running
skaffold run
/skaffold build
, I expect the image to be built for linux/arm64 (when the Kubernetes nodes are running linux/arm64). This should behave, effectively, the same as apack build
which now supports arm64Actual behavior
The following warning is printed to stdout:
after which the container is built for linux/amd64.
I suspect this is related to this line which enforces amd64 for Buildpacks (which is no longer true).
Information
Steps to reproduce the behavior
skaffold build
on an arm64 arch (like an M1 or a linux/arm64 machine)The text was updated successfully, but these errors were encountered: