From 52832276030dba3adb73f25c05c0c1bc21369b96 Mon Sep 17 00:00:00 2001 From: Vikram Hosakote Date: Tue, 13 Feb 2018 01:31:49 -0500 Subject: [PATCH] Add doc about opening k8s dashboard in Minikube tutorial (#7375) * Added doc about Minukube dashboard * Addressed review comment --- docs/tutorials/stateless-application/hello-minikube.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/tutorials/stateless-application/hello-minikube.md b/docs/tutorials/stateless-application/hello-minikube.md index b68fe8867d..ed0a1a16a5 100644 --- a/docs/tutorials/stateless-application/hello-minikube.md +++ b/docs/tutorials/stateless-application/hello-minikube.md @@ -122,6 +122,12 @@ Verify that `kubectl` is configured to communicate with your cluster: kubectl cluster-info ``` +Open the Kubernetes dashboard in a browser: + +```shell +minikube dashboard +``` + ## Create your Node.js application The next step is to write the application. Save this code in a folder named `hellonode`