The above is what we see after navigating to the ROOT_URL. There is no error in the console however there is an err header that is returned but the error is [object Object].
We are on a development environment so we don’t want mongo db replication so following this, we bypassed the oplog validation.
We are using k8s. The following is the values.yaml file. (I’ve removed the dots from urls to get past new users being unable to post more than 2 urls)
replicas: 1
projectName: rocketchat
namespace: dev
Also, in regards to the mongo replica sets, I believe the entire server will be replicated, is there a way to only replicate the collections that RC uses?
First of all, as @john.crisp mentioned, you have to initialize a replica set.
No. MongoDB replication is about data redundancy across all nodes. As far as I know, you can’t have partial/filtered replication in Mongo natively, that’d defeat the whole purpose.
Yes, you can, but this is absolutely not recommended. YMMV. Please take extra care here and make sure if you have any issues make sure you mention this fact.