Hi. I am new to Envoy.
Both Traefik and Fabio work by querying Consul catalog of services. If a request is made, the hostname of that request is matched against that catalog and the request is forwarded to the destination host.
I can also write a Nomad job with ngixn with template configuration that generates nginx.conf from Consul registered services, and it will work the same as Traefik and Fabio. These methods are described in Load balancer deployment considerations | Nomad | HashiCorp Developer documentation. But there is no Envoy.
I do not care and do not want service mesh, I do not want consul connect, I am not interested in encrypting service-to-service connections, I do not want private or isolated connections. I am only interested in the public proxy.
Does Envoy support proxying the exported services of Nomad jobs the same way other proxies work? My research states it does, however I do not understand how. How should it be configured to do it? Could someone post Envoy or Nomad job configuration?
Should I deploy Envoy as a system job on all machines like I do with fabio or traefik or nginx, or does Nomad manage Envoy? What if there is no Consul installed on the particular agent? Does it also forward Nomad services, or only Consul registered services?
I do not understand if Envoy is a product that exists solely for some service-to-service communication, or is it a global proxy entrypoint https load-balancer. Thank you.