Rasa-X creating classic load balancer while deploying to EKS clusture

I’m trying to deploy Rasa-X to EKS using Helm but it is creating a classic load balancer instead of a network load balancer for exposing the application.

nginx:
service:
     port: 8000
     type: LoadBalancer

This is the default nginx ingress controller configuration I found fron values.yml file.

Also one more question, Is it possible to use nginx type as NodePort in order to setup an application load balancer instead of a network based one ?

Hi @nakshathru, you should be able to specify nginx as a NodePort via the values file:

nginx:
  service:
    type: NodePort