README.md 1.8 KB
Newer Older
1
# Kubernetes Dashboard
2
[![Build Status](https://travis-ci.org/kubernetes/dashboard.svg?branch=master)](https://travis-ci.org/kubernetes/dashboard)
S
Sebastian Florek 已提交
3
[![Coverage Status](https://codecov.io/github/kubernetes/dashboard/coverage.svg?branch=master)](https://codecov.io/github/kubernetes/dashboard?branch=master)
M
Marcin Maciaszczyk 已提交
4
[![Go Report Card](https://goreportcard.com/badge/github.com/kubernetes/dashboard)](https://goreportcard.com/report/github.com/kubernetes/dashboard)
B
bryk 已提交
5

P
Piotr Bryk 已提交
6
Kubernetes Dashboard is a general purpose, web-based UI for Kubernetes clusters. It allows users to
P
Piotr Bryk 已提交
7
manage applications running in the cluster and troubleshoot them, as well as manage the cluster
8
itself.
9

C
Christoph Held 已提交
10
## Usage
11

B
bryk 已提交
12 13 14
It is likely that Dashboard is already installed on your cluster. To access it navigate in your
browser to one of the following URLs: `https://<kubernetes-master>/ui` which redirects to
`https://<kubernetes-master>/api/v1/proxy/namespaces/kube-system/services/kubernetes-dashboard`.
C
Christoph Held 已提交
15

B
bryk 已提交
16 17 18 19 20
If you find that you’re not able to access the Dashboard you can install and open the latest
stable release by running the following commands:
```bash
kubectl create -f https://rawgit.com/kubernetes/dashboard/master/src/deploy/kubernetes-dashboard.yaml
```
21
And then navigate to `https://<kubernetes-master>/ui`
C
Christoph Held 已提交
22

23 24 25
If it asks password, use `$ kubectl config view` to find it.


26
## Documentation
C
Christoph Held 已提交
27

B
bryk 已提交
28
* The [user guide](http://kubernetes.io/docs/user-guide/ui/) is an entry point for users of Dashboard
C
Christoph Held 已提交
29

B
bryk 已提交
30 31 32
* The [design overview](docs/design/README.md) describes design concepts of Dashboard

* The [developer guide](docs/devel/README.md) is for anyone wanting to contribute to Dashboard
33

34

C
Christoph Held 已提交
35
## License
36

37 38
The work done has been licensed under Apache License 2.0. The license file can be found
[here](LICENSE). You can find out more about the license at:
39 40

http://www.apache.org/licenses/LICENSE-2.0