Here by using latest(1.17.2) deployment charts from istio installation on Kubernetes , it was not deploying egress pod, So any one having an idea of helm deployment for istio , which needs to bring istiod, ingress-gateway & egress gateway from helm deployement
Gateways have their own chart, you probably want to deploy without a LoadBalancer IP (according to this page):
helm install istio-egress istio/gateway -n istio-system \
--set service.type=ClusterIP --wait
Note that Istio is also moving to use GatewayAPI for automatic gateway provisioning, here’s some more information; it works just fine in 1.7.2, you can create a gateway by creating an object of type Gateway
from the gateway.networking.k8s.io
APIs, that object will create both the actual gateway and the service associate with it.