-
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
Default to best-available local hypervisor rather than VirtualBox #5700
Changes from 17 commits
1fc11f5
680b542
443ae74
8631587
4b63c0d
5d4bf08
118783c
90ac694
c4fc450
dcdac36
bdd937d
bdd0f38
c925f65
8920a88
b004527
d94fc65
82cb5a1
f9b0c77
586f300
c2fd3c6
fda1aba
33ef4e1
c153919
c50a849
04acb59
d3618fb
416f132
e46502c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,8 @@ JOB_NAME="HyperKit_macOS" | |
EXTRA_ARGS="--bootstrapper=kubeadm" | ||
EXTRA_START_ARGS="" | ||
PARALLEL_COUNT=3 | ||
EXPECTED_DEFAULT_DRIVER="hyperkit" | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no need for extra line |
||
|
||
# Download files and set permissions | ||
source common.sh |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,8 @@ VM_DRIVER="virtualbox" | |
JOB_NAME="VirtualBox_macOS" | ||
EXTRA_ARGS="--bootstrapper=kubeadm" | ||
PARALLEL_COUNT=3 | ||
EXPECTED_DEFAULT_DRIVER="hyperkit" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. virtualbox There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If hyperkit is installed on the machine, this will be hyperkit as it takes precedence. I assume our VirtualBox mac also has hyperkit installed. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. good point! |
||
|
||
|
||
# Download files and set permissions | ||
source common.sh |
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.
just a random thought:
if auto-detect is not expensive, maybe add it to the help message. so the user doesnt have to guess what the auto-detect comes up with ?
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.
but thinking again, maybe not !