Kubernetes has a WebUI that visualizes the status of resources and machines, and also works as an additional interface for managing your application without command lines. In this recipe, we are going to introduce Kubernetes dashboard.
Playing with WebUI
Getting ready
Kubernetes dashboard (https://github.com/kubernetes/dashboard) is like a server-side application. In the beginning, just make sure you have a healthy Kubernetes cluster running, and we will go through the installation and related setup in the coming pages. Since the dashboard will be accessed by the browser, we can use a minikube-booted, laptop-running Kubernetes system, and reduce procedures for forwarding network ports or setting firewall rules.
For Kubernetes...