mongodb-container
mongodb-container copied to clipboard
MongoDB container images based on Red Hat Software Collections and intended for OpenShift and general usage. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
update version beta to apps/v1
Can you please suggest how I can upgrade to version > 4.0
The official [Docker Hub image for MongoDB](https://hub.docker.com/_/mongo/) allows passing arguments to `mongod` via its [entrypoint script](https://github.com/docker-library/mongo/blob/c664ab653154aa4068a46f57ceeacd7c5cda1ae4/2.4/docker-entrypoint.sh). This feature is useful and users can benefit of it both via `docker run`...
The default timezone is utc. Some customers need to have there local timezone. It would be nice to be able to set the timezone at the creation time
This contains the updated mongodb statefulset quickstart example from the red hat COP repository. It looks like it might have been copied from there originally.
This PR accomplishes two things: 1.) Setting up init folder structure to a more domain-driven design - this will help with segregating/sharing code across future run modes. (coming in other...
This PR builds off of https://github.com/sclorg/mongodb-container/pull/264 to add Sharding functionality to the image. Some things changed: - mongodb.conf template moved to /usr/share/container-scripts/mongodb/template folder. mongos.conf template created. - mongos initialization routines...
Added ability to use TLS for Mongo inter-cluster communication. This PR builds off several others, see #264 first
This is work based off of jbornemann's work documented here: https://github.com/redhat-cop/containers-quickstarts/tree/master/mongodb and: https://github.com/jbornemann/mongodb-container/tree/working_branch/3.2 The purpose of these updates to support sharding with mongodb using mongos with a configsvr. I can...
When the first replica set is deleted, the replica set always initializes itself again, even if a set already exists. By querying the number of endpoints, the node adds itself...