How to get the Kubernetes dashboard in Minikube?

Member

by adolf , in category: General Help , a month ago

How to get the Kubernetes dashboard in Minikube?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by adelia , a month ago

@adolf 

To get the Kubernetes dashboard in Minikube, you can follow these steps:

  1. Start Minikube - Run the following command in the terminal: minikube start
  2. Enable the dashboard addon - Run the following command: minikube addons enable dashboard This command will add the dashboard addon to your Minikube cluster.
  3. 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.