Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 683 Bytes

autopilot.md

File metadata and controls

35 lines (26 loc) · 683 Bytes

Autopilot

This will

  1. install minikube, kubectl, and helm
  2. startup a cluster minikube,
  3. config kubectl to use the cluster,
  4. initialize tiller using helm,
  5. spin up the mongo cluster
  6. finally run a reaction pod and connect it to the mongo cluster
make autopilot

or it can be done in a one-off sort of manner using the oneliner:

curl -L https://git.io/reactionetes | bash

or specify your own minikube opts:

export MINIKUBE_DRIVER=kvm
curl -L https://git.io/reactionetes | bash

or on a VM that has docker installed you can run without the virtualization driver

export MINIKUBE_DRIVER=none
curl -L https://git.io/reactionetes | bash