Jaysins

Results 6 comments of Jaysins

No, the default architecture is standalone. Which works. But changing it to replicaset causes this issue.

architecture: standalone Changed to architecture: replicaset

> In order to reproduce the issue on our side, could you please share the parameters that were modified? have you been able to?

@serkan1st1 your yaml file should only contain parameters you want to set. Do not include the whole template. just create a yaml fill with the conf necessary architecture: replicaset replicaCount:...

@joancafom This is my current setup to install mongo on helm ``` helm upgrade mongo \ --set architecture=replicaset \ --set replicaCount=3 \ --set persistence.size=500Gi \ --set automountServiceAccountToken=true \ --set externalAccess.enabled=true...

Apparently to by pass this you first have to install the bitnami/mongo, without the externalservice enabled ``` helm install mongo \ --set architecture=replicaset \ --set replicaCount=3 \ --set persistence.size=500Gi \...