< Previous Challenge - Home - Next Challenge >
We are going to need MongoDB for v2 of our application and we'll be running it in our Kubernetes cluster.
In this challenge we'll be installing MongoDB into our cluster.
- Deploy a MongoDB container in a pod for v2 of the FabMedical app
- Hint: Check out the Docker Hub container registry and see what you can find.
- Confirm it is running with:
kubectl exec -it <mongo pod name> -- mongo "--version"
- MongoDB is installed and run in our cluster
- The
mongo --version
command can be run in a pod and shown to work.