We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cd $HOME/git/camel-k git checkout v2.2.0 IMAGE_ARCH=arm64 make images go build ./cmd/kamel kamel install --olm=false --operator-image=apache/camel-k:2.2.0-arm64 --base-image=eclipse-temurin:17-jdk@sha256:e8d451f3b5aa6422c2b00bb913cb8d37a55a61934259109d945605c5651de9a6 --build-publish-strategy Jib kubectl describe pod -l app=camel-k kubectl logs -f --tail=400 -l app=camel-k cd $HOME/git/camel-k-examples/01-basic kamel run Basic.java --dev ... Integration "basic" in phase "Running" [1] Monitoring pod basic-576695546d-v6p9n [1] exec /bin/sh: exec format error
2.2.0
The text was updated successfully, but these errors were encountered:
It turns out that this also happens with the official 2.2.0 release. When I inspect the Jib generated image, I see ...
"Architecture": "amd64", "Os": "linux", "Size": 484003142,
Despite the operator/base image architecture both being arm64, Jib generates an image for amd64
Sorry, something went wrong.
This fix would also make --base-image=eclipse-temurin:17-jdk@sha256:e8d451f3b5aa6422c2b00bb913cb8d37a55a61934259109d945605c5651de9a6 obsolete
--base-image=eclipse-temurin:17-jdk@sha256:e8d451f3b5aa6422c2b00bb913cb8d37a55a61934259109d945605c5651de9a6
Can we perhaps use the operator version suffix as an indicator of what jib.from.platforms to add?
jib.from.platforms
PR: #5286
Won't Fix
No branches or pull requests
Steps to reproduce
Camel K version
2.2.0
The text was updated successfully, but these errors were encountered: