# Local Dashboard Access

Launching the Kubernetes Dashboard through the Platform9 SaaS Management plane is a way to securely access your Kubernetes cluster remotely from anywhere. However, since the SaaS Management Plane proxies all requests and data to the remote cluster, the response times from the dashboard to the Cluster can be affected by the internal routing schemes.

{% hint style="info" %}
**Info**

To access the Kubernetes Dashboard directly from the cluster, you need to either be on a VPN or have direct network connectivity to the Kubernetes API server, and possess a valid kubeconfig for the cluster.
{% endhint %}

## Step 1 - Download Kubeconfig

Navigate to the Cluster Details page by clicking on a cluster on the Infrastructure dashboards Clusters tab. On the cluster details dashboard, click the Kubeconfig link that's within the Cluster details card. Then, select either a token, or a username and password and then download the kubeconfig.

## Step 2 - Enable Kubernetes Proxy

Kubernetes can proxy requests to services that do not have Ingress, NodePort or ClusterPort configurations. To enable the Kubernetes proxy, open a terminal and run, `kubectl proxy.`

{% tabs %}
{% tab title="Bash" %}

```bash
kubectl proxy
Starting to serve on 127.0.0.1:8001
```

{% endtab %}
{% endtabs %}

The Kubernetes dashboard will be accessible at the following address.

<http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.platform9.com/managed-kubernetes/5.15/clusters/kubernetes-dashboard/local-dashboard-access.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
