I run a Kubernetes cluster on my mac using the latest Docker community edition. I usually do:
$ minikube start --vm-driver=hyperkit
and it works well for me.
Today, I ran that command multiple times in a script. Now, how do I know how many minikube VMs are running on a mac? How do I delete all but one of them? Can I see a list of all minikube vms running?
$ minikube status
shows:
minikube: Running
cluster: Running
kubectl: Correctly Configured: pointing to minikube-vm at 192.168.64.3
Is running minikube start twice not harmful?
I am running minikube version: v0.30.0 on Mac OS High Sierra.
$ kubectl version
shows:
Client Version: version.Info{Major:"1", Minor:"12", GitVersion:"v1.12.0",
GitCommit:"0ed33881dc4355495f623c6f22e7dd0b7632b7c0", GitTreeState:"clean", BuildDate:"2018-09-28T15:20:58Z", GoVersion:"go1.11", Compiler:"gc", Platform:"darwin/amd64"}
Thanks for reading.