-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Failing to build docker-machine-driver-kvm2-arm64
on CI infra
#19959
Comments
Merged
I think you need to build this on a real ARM machine (or cross-compile), instead of using docker and qemu. $ arch
aarch64
$ BUILD_IN_DOCKER=n make out/docker-machine-driver-kvm2-arm64
GOARCH=arm64 \
go build \
-buildvcs=false \
-installsuffix "static" \
-ldflags="-X k8s.io/minikube/pkg/drivers/kvm.version=v1.34.0 -X k8s.io/minikube/pkg/drivers/kvm.gitCommitID="5ef41d2dc83b805dcb173a98efd21cbb63f0b795"" \
-tags "libvirt_without_lxc" \
-o out/docker-machine-driver-kvm2-arm64 \
k8s.io/minikube/cmd/drivers/kvm
chmod +X out/docker-machine-driver-kvm2-arm64 It should be mostly about setting the
|
@afbjorklund this used to work fine, but broke in new Kernel headers and seems like on newer ubuntu machines its fine but we dont have bandwith to upgrade the machines |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Recently, running
BUILD_IN_DOCKER=y make out/docker-machine-driver-kvm2-arm64
has failed with the error below. This is blocking all integration testing. The current plan is to disable KVM support on arm64 until this is resolved.The text was updated successfully, but these errors were encountered: