March 2017
Beginner to intermediate
925 pages
18h 11m
English
Kubernetes has the WebUI add-on that visualizes Kubernetes' status, such as pod, replication controller, and service.
The Kubernetes WebUI is assigned as http://<kubernetes master>/ui. However, it is not launched by default, instead there are YAML files in the release binary.
Kubernetes 1.2 introduces the dashboard. For more details, please refer to http://kubernetes.io/docs/user-guide/ui/.

Access to Kubernetes master/ui page
Let's download a release binary and launch the WebUI:
//Download a release binary $ curl -L -O https://github.com/kubernetes/kubernetes/releases/download/v1.1.4/kubernetes.tar.gz //extract the ...
Read now
Unlock full access