I have deployed MongoDB ReplicaSet on Kubernetes using Helm and the chart stable/mongodb-replicaset
On Kubernetes, I can connect to MongoDB using the connection string which is something of the sort
mongodb://mongodb0.example.com:27017,mongodb1.example.com:27017,mongodb2.example.com:27017/?replicaSet=myRepl
In the event I change the number of replicas, the connection string would change as well, which also means that every application connecting to the database would need to be updated.
Is there a workaround to this?
I thought of creating a Service, so that only this would need to be changed, however the connection string does not pass regex validation.
Any help on this is appreciated.