Sunil Gajula
Sunil Gajula

Reputation: 1223

Is it possible to start minikube with custom virtual machine?

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.

Upvotes: 1

Views: 547

Answers (2)

Sreejith
Sreejith

Reputation: 464

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/

Upvotes: 0

Sunil Gajula
Sunil Gajula

Reputation: 1223

We can start a custom image using the below option.

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

Upvotes: 1

Related Questions