From d5038349012949840b4d27756626b9ad32b1165d Mon Sep 17 00:00:00 2001 From: Soam Vasani Date: Fri, 16 Dec 2016 14:41:12 -0800 Subject: [PATCH] mac/linux download url for minikube --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e1599ac3..2c812105 100644 --- a/README.md +++ b/README.md @@ -81,16 +81,21 @@ Running Fission on your Cluster ### Setup Kubernetes -You can install Kubernetes on your laptop with -[minikube](https://github.com/kubernetes/minikube): +You can install Kubernetes on your laptop with [minikube](https://github.com/kubernetes/minikube): +Install minikube on OSX: ```bash - # Install minikube: $ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.14.0/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/ +``` - # Start Kubernetes: +Or, install it on Linux: +```bash + $ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.14.0/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/ +``` + +And start Kubernetes: +``` $ minikube start - ``` Or, you can use [Google Container Engine's](https://cloud.google.com/container-engine/) free trial to get a 3 node cluster.