Consul listener setup with helm

I running consul in a kubernetes cluster, it was installed with the official helm chart, and I’m running:
ingress gateway (load balancer)
terminating gatway

In the helm chart there is no configuration available for setting up a listener. Do I need to manually set this up? Or does the ingress gateway provide everything needed?

Hi @mjwilkerson-strateos,

The Helm chart allows you to configure the set of ports exposed by Kubernetes for the gateway container using ingressGateways.defaults.service.ports.

You must then create a corresponding listener configuration for the ingress gateway using an ingress-gateway configuration entry. This configuration defines the protocol to listen for (TCP, HTTP, or gRPC), and how the gateway should route connections/requests received on that port.

Thank you Blake… I will try this out.