> For the complete documentation index, see [llms.txt](https://amdocs-1.gitbook.io/kubernetes-handbook/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://amdocs-1.gitbook.io/kubernetes-handbook/dashboard-and-debugging/kubernetes-dashboard.md).

# Kubernetes Dashboard

### Deploy directly from UI using + option via yaml/file/form

To enable Kubernetes Dashboard and **visualise all the processes** in a seamless manner follow the commands below.

```
$ minikube addons list
```

```
$ minikube addons enable dashboard
```

```
$ minikube addons enable metrics-server
```

```
$ minikube dashboard
```

{% hint style="info" %}
Launches the Kubernetes UI in browser.
{% endhint %}
