You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/minikube/cmd/start.go
+3
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,7 @@ const (
85
85
vsockPorts="hyperkit-vsock-ports"
86
86
gpu="gpu"
87
87
embedCerts="embed-certs"
88
+
noVTXCheck="no-vtx-check"
88
89
)
89
90
90
91
var (
@@ -139,6 +140,7 @@ func init() {
139
140
startCmd.Flags().String(vpnkitSock, "", "Location of the VPNKit socket used for networking. If empty, disables Hyperkit VPNKitSock, if 'auto' uses Docker for Mac VPNKit connection, otherwise uses the specified VSock.")
140
141
startCmd.Flags().StringSlice(vsockPorts, []string{}, "List of guest VSock ports that should be exposed as sockets on the host (Only supported on with hyperkit now).")
141
142
startCmd.Flags().Bool(gpu, false, "Enable experimental NVIDIA GPU support in minikube (works only with kvm2 driver on Linux)")
143
+
startCmd.Flags().Bool(noVTXCheck, false, "Disable checking for the availability of hardware virtualization before the vm is started (virtualbox)")
0 commit comments