mlangbehn commented on a change in pull request #13: Add script and 
instructions for using Minikube
URL: 
https://github.com/apache/incubator-openwhisk-deploy-kube/pull/13#discussion_r122466595
 
 

 ##########
 File path: minikube/ci/setup.sh
 ##########
 @@ -0,0 +1,38 @@
+#!/bin/bash
+
+# Installs and starts minikube
+
+set -x
+
+# download kubectl
+wget 
https://storage.googleapis.com/kubernetes-release/release/v1.5.4/bin/linux/amd64/kubectl
+chmod +x kubectl
+sudo mv kubectl /usr/local/bin/kubectl
+
+# download minikube
+wget 
https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
+chmod +x minikube-linux-amd64
+sudo mv minikube-linux-amd64 /usr/local/bin/minikube
+minikube version
+
+# assumes virtualbox, override with  --vm-driver virtualbox|xhyve|vmwarefusion
 
 Review comment:
   We should include KVM in this list:
   
   ```shell
   # assumes virtualbox, override with  --vm-driver 
virtualbox|kvm|xhyve|vmwarefusion
   ```
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to