-
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
Makefile improvements for the kvm2 driver #4779
Conversation
We should respect the MINIKUBE_BUILD_IN_DOCKER param, and also make the "docker inspect" output less verbose And make the windows target repeatable, by leaving the original output binary (copy instead of move) behind
Make sure that we don't link with libvirt 2.0.0+ by mistake. Don't need to link the LXC library, as we are not using it.
docker://gcr.io/k8s-minikube/kvm-build-image:latest
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: afbjorklund The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
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.
It built correctly locally.
If we are building the drivers in docker now, then we probably don't need to install libvirt-dev locally ? before_install:
- sudo apt-get install -y libvirt-dev
install:
- echo "Don't run anything."
|
Thank you! |
Cherry-picked from #4751
Improve the targets for the kvm2 driver, and make sure to build it using the Ubuntu 16.04 docker image.
Until the
gcr.io/k8s-minikube/kvm-build-image
image has been uploaded, build it when necessary...Double-check the linking of the final binary, to make sure that we have actually fixed #4555
#3689