There's likely a million introductions to Minikube, but I wanted one of my own. Thus, here you go! Minikube is basically Kubernetes light that runs on your own machine. Albeit, it does this similarly to how Docker used to do it, via a virtual machine. Thus, you can do some things with it but if you want to get serious you'll still need to spool up a proper cluster somewhere as it will start to bog down your machine with any heavy workloads.
1: Minikube - Installing
Linux Direct:
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
&& sudo install minikube-linux-amd64 /usr/local/bin/minikube
Linux Debian:
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
&& sudo install minikube-linux-amd64 /usr/local/bin/minikube
Linux Red Hat:
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-1.4.0.rpm \
&& sudo rpm -ivh minikube-1.4.0.rpm
2: Starting Minikube
minikube start
will start a minikube instance, pulling images, resources, kubelets, kubeadm, dashboard, and all those resources.
3: Stopping Minikube
minikube stop
brings the minikube service to a stop, allowing for restart later.
4. Deleting Minikube
minikube delete
will delete the minikube. This will delete any of the content or related collateral that was running in the minikube.
5. Restarting after Delete
minikube start
this is the way to restart a minikube instance after you've stopped the instance. It's also the way start a minikube, as shown above.
6. Starting a Named Minikube
If you want a named minikube instance, use the -p switch, with a command like minikube start -p adrons-minikube
.
7. Starting & Using the Dashboard
To check out the dashboard, that pretty Google dashboard for Kubernetes, run minikube dashboard
to bring that up.
8. Status!
To get a quick update on the current state of the minikube instance just run minikube status
.
9. Starting Minikube sans a Virtual Machine
This is, albeit I may be mistaken, this is a Linux only feature. Run minikube start --vm-driver=none
and it'll kick off a minikube right there on your local machine.
References:
My Blog! I have a personal blog at https://compositecode.blog/ that you can also subscribe to where I post additional collected material, thoughts, music, meetups, conferences, videos (like Twitch), open source projects, database work, data science, and much more.
Top comments (0)