Skip to content

Instantly share code, notes, and snippets.

@danielepolencic
Created November 30, 2020 03:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielepolencic/bdd5d8f7265b849b38cb5f8513a379d8 to your computer and use it in GitHub Desktop.
Save danielepolencic/bdd5d8f7265b849b38cb5f8513a379d8 to your computer and use it in GitHub Desktop.
Note for running minikube on Windows.

Minikube is a tricky beast on Windows.

There are several options to run minikube on Windows:

  1. WSL2
  2. HyperV
  3. VirtualBox

The easiest option is to run minikube with VirtualBox.

You can download Virtual Box from here: https://www.virtualbox.org/wiki/Downloads

To run VirtualBox, you need to disable HyperV:

bcdedit /set hypervisorlaunchtype off

You can start minikube with VirtualBox with:

minikube delete
minikube start --vm --driver=virtualbox

If you see more errors, check if you have enough space in your device as that's usually one the most common issues.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment