This will
- install minikube, kubectl, and helm
- startup a cluster minikube,
- config kubectl to use the cluster,
- initialize tiller using helm,
- spin up the mongo cluster
- 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