Is it possible to start minikube with custom virtual machine?

9/9/2019

Minikube runs a single-node Kubernetes cluster inside a Virtual Machine (VM) on our laptop.

Wanted to check if we start minikube to use custom virtual machine?

I am trying to run minikube on Mac OS.

-- Sunil Gajula
kubernetes
minikube

2 Answers

9/9/2019

Yes, definitely. You can make use of minikube start --vm-driver option. Document https://kubernetes.io/blog/2019/03/28/running-kubernetes-locally-on-linux-with-minikube-now-with-kubernetes-1.14-support/

-- JithZ
Source: StackOverflow

9/9/2019

We can start a custom image using the below option.

minikube start --iso-url=<> -p=test123 --vm-driver=hyperkit

-- Sunil Gajula
Source: StackOverflow