Setting LoadBalancer Type

The default setting for each service type is ClusterIP. This will only allow internal connections. The OneDB helm chart service types of interest are listed below. NOTE: The names of the services may be slightly different when installing onedb-mongo, onedb-rest, onedb-sql chart.

  • onedbcm-cm-service
  • <Release.Name>-odbp-explore
  • <Release.Name>-odbp-mongo
  • <Release.Name>-odbp-rest

Each of these service types can be configured as a LoadBalancer to provide external connectivity.

To set Loadbalancer for the Connection Manager:

onedb-sql:
    onedbcm:
        serviceType: LoadBalancer
To set LoadBalancer for Mongo

onedb-mongo:
    service:
        type: LoadBalancer
To set LoadBalancer for REST

onedb-rest:
   service:
      type: LoadBalancer
To set LoadBalancer for Explore

onedb-explore:
      service:
         type: LoadBalancer