Minikube comes with several add-ons, such as Kubernetes dashboard, Kubernetes DNS, and so on. We can list the available addons by executing the following command:
$ minikube addons list
The output of the previous command will list the available addons with their current status, for example:
To enable or disable the addon, we use minikube addons disable or minikube addons enable, respectively, for example:
$ minikube addons disable dashboard $ minikube addons enable heapster
If the add-on is enabled, we can the corresponding web user interface by executing the addon open command, for example:
$ minikube addons open heapster