Kubectl to access your cluster
A running kubernetes stack, perhap using minikube
with tiller initialized by helm
helm should be able to talk to your k8s cluster and install freely
On Windows Chocolatey can simplify installation
On Macintosh homebrew can simplify installation
the helm Install command can be used like this, you will probably want to set the release name of your running mongo cluster inside of k8s:
helm install --set mongodbReleaseName=massive-mongonetes ./reactioncommerce
or you can name the release
helm install --name my-release-name --set mongodbReleaseName=massive-mongonetes ./reactioncommerce
Or using the --set
option to set some of the values:
helm install \
--name my-release-name \
--set mongodbReleaseName=massive-mongonetes \
--set replicaCount=1 \
--set mongoReplicaCount=10 \
--set image.repository=joshuacox/mycustom \
--set image.tag=v1.5.8.2-leahlovise \
./reactioncommerce