2019-08-06 04:58:02 +00:00
|
|
|
---
|
|
|
|
title: "Dashboard"
|
2020-03-31 05:00:48 +00:00
|
|
|
weight: 4
|
2019-08-06 04:58:02 +00:00
|
|
|
description: >
|
2020-03-31 04:35:07 +00:00
|
|
|
Dashboard
|
2020-04-04 23:25:53 +00:00
|
|
|
aliases:
|
|
|
|
- /docs/tasks/dashboard/
|
2019-08-06 04:58:02 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
minikube has integrated support for the [Kubernetes Dashboard UI](https://github.com/kubernetes/dashboard).
|
|
|
|
|
2019-08-10 03:11:37 +00:00
|
|
|
## Overview
|
2019-08-06 04:58:02 +00:00
|
|
|
|
|
|
|
The Dashboard is a web-based Kubernetes user interface. You can use it to:
|
|
|
|
|
|
|
|
- deploy containerized applications to a Kubernetes cluster
|
|
|
|
- troubleshoot your containerized application
|
|
|
|
- manage the cluster resources
|
|
|
|
- get an overview of applications running on your cluster
|
|
|
|
- creating or modifying individual Kubernetes resources (such as Deployments, Jobs, DaemonSets, etc)
|
2020-11-14 09:04:22 +00:00
|
|
|
|
2019-08-06 04:58:02 +00:00
|
|
|
For example, you can scale a Deployment, initiate a rolling update, restart a pod or deploy new applications using a deploy wizard.
|
|
|
|
|
|
|
|
## Basic usage
|
|
|
|
|
|
|
|
To access the dashboard:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
minikube dashboard
|
|
|
|
```
|
|
|
|
|
2020-11-14 09:04:22 +00:00
|
|
|
This will enable the dashboard add-on, and open the proxy in the default web browser.
|
2019-08-06 04:58:02 +00:00
|
|
|
|
|
|
|
It's worth noting that web browsers generally do not run properly as the root user, so if you are
|
|
|
|
in an environment where you are running as root, see the URL-only option.
|
|
|
|
|
|
|
|
To stop the proxy (leaves the dashboard running), abort the started process (`Ctrl+C`).
|
|
|
|
|
|
|
|
## Getting just the dashboard URL
|
|
|
|
|
|
|
|
If you don't want to open a web browser, the dashboard command can also simply emit a URL:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
minikube dashboard --url
|
|
|
|
```
|
|
|
|
|
|
|
|
## Reference
|
|
|
|
|
2020-04-12 08:14:14 +00:00
|
|
|
For additional information, see [the official Dashboard documentation](https://kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/).
|