using the following command:
helm install mongodb bitnami/mongodb --set mongodbRootPassword=root --set mongodbUsername=myapp --set mongodbPassword=myapp --set mongodbDatabase=mydb --set replicaSet.enabled=true --set auth.enabled=false --set architecture=replicaset
Creating the following pods:
pod/mongodb-0 1/1 Running 0 17s
pod/mongodb-1 0/1 ContainerCreating 0 6s
pod/mongodb-arbiter-0
But it only add the pod/mongodb-0 to the rs. when I exec into pod/mongodb-1 and do rs.status() I get
MongoServerError: no replset config has been received
What am I doing wrong?