From dcc17d50b87f8000b065c56f5e5fa1159682d01f Mon Sep 17 00:00:00 2001 From: Soam Vasani Date: Fri, 16 Dec 2016 14:22:40 -0800 Subject: [PATCH 1/3] Include minikube setup instructions --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 764cc723..e1599ac3 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,17 @@ 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): + +```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: + $ minikube start + +``` Or, you can use [Google Container Engine's](https://cloud.google.com/container-engine/) free trial to get a 3 node cluster. From d5038349012949840b4d27756626b9ad32b1165d Mon Sep 17 00:00:00 2001 From: Soam Vasani Date: Fri, 16 Dec 2016 14:41:12 -0800 Subject: [PATCH 2/3] 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. From 1c5954ae614d753f9ceecb751af7ca9db33d389f Mon Sep 17 00:00:00 2001 From: Soam Vasani Date: Fri, 16 Dec 2016 14:53:34 -0800 Subject: [PATCH 3/3] mac/linux instructions --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2c812105..52c4d2d4 100644 --- a/README.md +++ b/README.md @@ -83,18 +83,15 @@ Running Fission on your Cluster You can install Kubernetes on your laptop with [minikube](https://github.com/kubernetes/minikube): -Install minikube on OSX: +#### Install and start Kubernetes on OSX: ```bash $ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.14.0/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/ + $ minikube start ``` -Or, install it on Linux: +#### Or, install and start Kubernetes 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 ```