Openshift : MongoDB and Mongoexpress

11/18/2019

I have some team members that don't have permission to pull docker image locally on their machine and run as local instance of mongodb and mongoexpress.

So am planning to deploy as mongodb and mongoexpress as pods in Openshift to access locally. Can anyone provide the steps to do that in Openshift? Or else proper resource where I can find information / steps.

I am new to openshift.

-- Mohan
docker
docker-compose
kubernetes
mongodb
openshift

1 Answer

11/19/2019

Can anyone provide the steps to do that in Openshift?

This tutorial explains how apps (containers) are deployed from images in OpenShift

Or else proper resource where I can find information/steps

It depends on your needs, the main question is if you really need container orchestration tools or no. If you need them then you can consider installing them locally:

or in cloud:

from what I've already seen, Kubernetes provides a lot of documentation (with examples, etc) on topic.

Last but not least, there is a really nice step-by-step guide on how to create Kubernetes cluster from scratch "the hard way" if you need the cluster to be fully managed by you.

-- Nick
Source: StackOverflow