-
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
Remove localkube from bindata #2089
Conversation
@minikube-bot retest this please |
a6375eb
to
df927ad
Compare
This makes the minikube build simpler and the the binary smaller. Localkube will always be remotely fetched and locally cached on the host.
@minikube-bot test this please |
Ah theres an error since minikube reference the hyperkit package, which then references go-vmnet, which requires CGO_ENABLED=1. I'll see if i I can figure out how to remove this dependency |
This allows us to use the hyperkit Driver struct in minikube, without needing CGO_ENABLED=1. For the hyperkit driver binary, the CGO_ENABLED=1 function will work.
Codecov Report
@@ Coverage Diff @@
## master #2089 +/- ##
==========================================
- Coverage 28.92% 28.84% -0.08%
==========================================
Files 81 81
Lines 5311 5307 -4
==========================================
- Hits 1536 1531 -5
- Misses 3582 3583 +1
Partials 193 193
Continue to review full report at Codecov.
|
This also removes CGO_ENABLED=1 from minikube (but not localkube), making it easier to cross build and compile |
An additional note: if you want to test localkube changes now, you'll need to set |
This makes the minikube build simpler and the the binary smaller.
Localkube will always be remotely fetched and locally cached on the
host.