rancher/dashboard

Name: dashboard

Owner: Rancher

Description: General-purpose web UI for Kubernetes clusters

Forked from: kubernetes/dashboard

Created: 2017-05-02 17:24:22.0

Updated: 2017-05-02 17:24:26.0

Pushed: 2017-05-03 17:42:57.0

Homepage:

Size: 88647

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Kubernetes Dashboard

Build Status Coverage Status Go Report Card GitHub release

Kubernetes Dashboard is a general purpose, web-based UI for Kubernetes clusters. It allows users to manage applications running in the cluster and troubleshoot them, as well as manage the cluster itself.

Dashboard UI workloads page

Deployment

It is likely that the Dashboard is already installed on your cluster. Check with the following command:

bectl get pods --all-namespaces | grep dashboard

If it is missing, you can install the latest stable release by running the following command:

bectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/kubernetes-dashboard.yaml

If you are using Kubernetes 1.5 or earlier, you can install the latest stable release by running the following command:

bectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/kubernetes-dashboard-no-rbac.yaml

You can also install unstable HEAD builds with the newest features that the team works on by following the development guide.

Note that for the metrics and graphs to be available you need to have Heapster running in your cluster.

Usage

The easiest way to access Dashboard is to use kubectl. Run the following command in your desktop environment:

bectl proxy

kubectl will handle authentication with apiserver and make Dashboard available at http://localhost:8001/ui

The UI can only be accessed from the machine where the command is executed. See kubectl proxy --help for more options.

Alternative Usage

You may access the UI directly via the apiserver proxy. Open a browser and navigate to https://<kubernetes-master>/ui.

Please note, this works only if the apiserver is set up to allow authentication with username and password. This is not currently the case with the setup tool kubeadm. See documentation if you want to configure it manually.

If the username and password is configured but unknown to you, then use kubectl config view to find it.

Documentation
License

The work done has been licensed under Apache License 2.0. The license file can be found here. You can find out more about the license at:

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


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.