Hello,
I was reading about this new resource introduced in v-1.1 - “sidecar”… [HERE](https://istio.io/docs/reference/config/networking/v1alpha3/sidecar/)
Here is my config:
apiVersion: networking.istio.io/v1alpha3
kind: Sidecar
metadata:
name: allow-out
namespace: r19-3-product-qa
spec:
egress:
- hosts:
- "egproxy-lle/*"
- "*/*"
“egproxy-lle” namespace consists just a service which points to IP of an Internal Load Balancer:
I am expecting all the calls routed to egproxy service IP in egproxy-lle namespace should be passed to ILB ip. THis is not happening right now. What I need to do to make this work ?