Skip to content

Minikube command sheet

DOCKER basic commands

To start docker program one can use the GUI command (prefered on OSX) or execute:

systemctl --user start docker-desktop

To see the actual status of the service

systemctl --user status docker-desktop

To stop docker-desktop

systemctl --user stop docker-desktop

Start - stop - delete

Here we assume to use a minkube k8s cluster named igwn-kube. The basic instruction to create, start, stop, and delete the k8s cluster are:

minikube start --profile igwn-kube --cpus=4 --memory=8GiB
minikube -p igwn-kube start
minikube -p igwn-kube stop
minikube -p igwn-kube delete

monitoring minikube

The installation status and the k8s cluster can be monitored using the provided k8s dashboard:

minikube -p igwn-kube addons enable metrics-server
minikube -p igwn-kube dashboard