@adolf
To get the Kubernetes dashboard in Minikube, you can follow these steps:
- Start Minikube - Run the following command in the terminal:
minikube start
- Enable the dashboard addon - Run the following command:
minikube addons enable dashboard
This command will add the dashboard addon to your Minikube cluster.
- Open the Kubernetes dashboard - Run the following command:
minikube dashboard
This command will open the dashboard in your default web browser.
Alternatively, you can also get the dashboard URL by running:
minikube dashboard --url
This will display the URL where the dashboard is accessible.
Now, you should have the Kubernetes dashboard running and accessible in your Minikube cluster.