How to access Minikube dashboard?

0429

To access the Minikube dashboard, follow these steps:

  1. Start Minikube (if you haven't already):

    minikube start
  2. Open the Minikube dashboard using the following command:

    minikube dashboard

    This command will automatically open the dashboard in your default web browser.

Alternatively, if you want to access the dashboard manually:

  1. Start the Kubernetes proxy:

    kubectl proxy
  2. Open a web browser and navigate to the following URL:

    http://localhost:8001/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/

This will take you to the Minikube dashboard where you can manage your Kubernetes resources.

0 Comments

no data
Be the first to share your comment!