How to expose service as a load balancer of type classic aws load balancer

Hi friends,

By default the mongodb is exposed as a NLB. I would like to set it so that that it is exposed as a classic load balancer. How can i do that? I have tried setting the following annotation, but it continues to expose the service as an NLB

    expose:
      enabled: true
      exposeType: LoadBalancer
      # loadBalancerSourceRanges:
      #   - 10.0.0.0/8
      serviceAnnotations:
        service.beta.kubernetes.io/aws-load-balancer-type: classic
        # service.beta.kubernetes.io/aws-load-balancer-backend-protocol: http

Also tried the values external and alb they all create a nlb

The AWS Load balancer controller by default no longer supports the creation of classic load balancer. Usually a classic load balancer will be created by not specifying the annotation service.beta.kubernetes.io/aws-load-balancer-type

Instead we should use Network Load Balancer

please also note splitHorizon DNS? - #7 by Sergey_Pronin