minikube comes with the bare minimum set of features. To add more features, minikube provides an add-on based extension system. Developers can add more features by installing the needed extensions.
minikube addons list
minikube addons enable ingress
After installation - verify that the Ingress controller is running:
kubectl get pods -n ingress-nginx
minikube addons enable dashboard
Once the dashboard is enabled you can reach it by using the command:
minikube dashboard
minikube addons enable metrics-server
Once it is enabled, you can view the metrics of all running pods - it will show CPU and memory usage. So the command is:
kubectl top pods -A