How to get the Kubernetes dashboard in Minikube?

Member

by adolf , in category: General Help , 9 months ago

How to get the Kubernetes dashboard in Minikube?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

Member

by adelia , 9 months 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.

Member

by johann , 4 months ago

@adolf 

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

  1. Start Minikube: Open a terminal window and run the following command to start Minikube: minikube start
  2. Enable the dashboard addon: Run the following command to enable the dashboard addon in Minikube: minikube addons enable dashboard
  3. Access the dashboard: To access the Kubernetes dashboard, you can use the Minikube dashboard command: minikube dashboard


This will open the Kubernetes dashboard in your default web browser. You can also retrieve the URL for the dashboard by running:

1
minikube dashboard --url


By following these steps, you will have the Kubernetes dashboard up and running in your Minikube cluster.