-
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 deprecated drivers: kvm-old and xhyve #4781
Changes from 4 commits
914713f
6729f6c
9896386
d0ae6e9
7a81b7c
1b83a89
1dc2afc
12c6d13
649d419
405906a
80fc101
3555ae5
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 |
---|---|---|
|
@@ -247,7 +247,7 @@ minikube service [command] | |
|
||
--- | ||
### start | ||
**Description -** Starts a local kubernetes cluster using VM. This command assumes you have already installed one of the VM drivers: **virtualbox/parallels/vmwarefusion/kvm/xhyve/hyperv**. | ||
**Description -** Starts a local kubernetes cluster using VM. This command assumes you have already installed one of the VM drivers: **virtualbox/parallels/vmwarefusion/kvm/hyperv**. | ||
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. kvm2 ? 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. Removed. |
||
**Usage -** `minikube start [flags]` | ||
**Available Flags -** | ||
``` | ||
|
@@ -259,7 +259,7 @@ minikube service [command] | |
--container-runtime string The container runtime to be used (docker, crio, containerd) (default "docker") | ||
--cpus int Number of CPUs allocated to the minikube VM (default 2) | ||
--cri-socket string The cri socket path to be used | ||
--disable-driver-mounts Disables the filesystem mounts provided by the hypervisors (vboxfs, xhyve-9p) | ||
--disable-driver-mounts Disables the filesystem mounts provided by the hypervisors (vboxfs) | ||
--disk-size string Disk size allocated to the minikube VM (format: <number>[<unit>], where unit = b, k, m or g) (default "20000mb") | ||
--dns-domain string The cluster dns domain name used in the kubernetes cluster (default "cluster.local") | ||
--docker-env stringArray Environment variables to pass to the Docker daemon. (format: key=value) | ||
|
@@ -295,8 +295,7 @@ minikube service [command] | |
--registry-mirror strings Registry mirrors to pass to the Docker daemon | ||
--service-cluster-ip-range string The CIDR to be used for service cluster IPs. (default "10.96.0.0/12") | ||
--uuid string Provide VM UUID to restore MAC address (only supported with Hyperkit driver). | ||
--vm-driver string VM driver is one of: [virtualbox parallels vmwarefusion kvm xhyve hyperv hyperkit kvm2 vmware none] (default "virtualbox") | ||
--xhyve-disk-driver string The disk driver to use [ahci-hd|virtio-blk] (only supported with xhyve driver) (default "ahci-hd") | ||
--vm-driver string VM driver is one of: [virtualbox parallels vmwarefusion kvm hyperv hyperkit kvm2 vmware none] (default "virtualbox") | ||
``` | ||
|
||
--- | ||
|
This file was deleted.
This file was deleted.
This file was deleted.
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.
kvm2 ?
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.
Maybe something like:
fmt.Sprintf("....%v", constants.SupportedVMDrivers))
. Then once the PR #4738 is merged, it would list the correct drivers for each platform.wdyt?
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.
I didn't find the long help here particularly useful, so I removed it.