Coming soon.
- Complete previous labs:
-
Install MongoDB Statefulset with Helm
Helm helps you manage Kubernetes applications — Helm Charts helps you define, install, and upgrade even the most complex Kubernetes application. Helm has a CLI component and a server side component called Tiller.
- Helm should already be installed in the cluster from previous exercise, so we will just need to deploy the MongoDB Chart:
cd ~/kubernetes-hackfest helm install stable/mongodb --name mongodb
- Validate the install of mongodb:
kubectl get pods //TODO
-
Connect to MongoDB Cluster