Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 1.09 KB

minikube.md

File metadata and controls

51 lines (33 loc) · 1.09 KB

Minikube

Let's start the minikube

Command:

minikube start --driver=<virtual machine name>

For Virtualbox:

minikube start --driver=virtualbox --no-vtx-check

// Personal Configurations
minikube start --driver=virtualbox --memory 4000 --cpus 4 --no-vtx-check

For Docker

Enable and restart the docker

minikube start --driver=docker

For Hyper-v, hyperkit, parallels, vmware

Enable the Kubernetes in respective your platform and follow the below command

minikube start --driver=hyperv
minikube start --driver=hyperkit
minikube start --driver=parallels
minikube start --driver=vmware

After Installation check the status:

minikube status

That's it, a single node cluster is successfully created in your machine.