From 7391a4acff1bcc3f6b62d2ab8cda538dbb8c2952 Mon Sep 17 00:00:00 2001 From: Edson Celio Date: Mon, 1 Oct 2018 13:27:58 -0300 Subject: [PATCH] minikube: add page (#2358) --- pages/common/minikube.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/common/minikube.md diff --git a/pages/common/minikube.md b/pages/common/minikube.md new file mode 100644 index 000000000..9cb9f5d04 --- /dev/null +++ b/pages/common/minikube.md @@ -0,0 +1,19 @@ +# minikube + +> Tool to run Kubernetes locally. + +- Start the cluster: + +`minikube start` + +- Get the IP address of the cluster: + +`minikube ip` + +- Access a service named my_service exposed via a node port and get the url: + +`minikube service {{my_service}} --url` + +- Open kubernetes dashboard in a browser: + +`minikube dashboard`