Ian Rudie

Results 159 comments of Ian Rudie

It looks like for some reason `getLinkWithDestinationOf` is failing to get any routes. ```go routes, err := netlink.RouteListFiltered( netlink.FAMILY_V4, &netlink.Route{Dst: &net.IPNet{IP: net.ParseIP(ip), Mask: net.CIDRMask(32, 32)}}, netlink.RT_FILTER_DST) ``` Possible this filter...

https://github.com/ilrudie/istio-istio/tree/detect-and-repair-issue As @bleggett mentioned, recent fixes mostly avoid the issue. It'll be more prominent in this branch in my fork where I have not yet merged the fixes. Using the...

The workload selector in DestinationRule governs where the DestinationRule is applied (in your case it would be limited to only the sidecars for the productpage app) so its likely the...

"Criteria used to select the specific set of pods/VMs on which this DestinationRule **_configuration_** should be applied." (emphasis my own) [ref](https://istio.io/latest/docs/reference/config/networking/destination-rule/#DestinationRule) This is the specific verbiage on the field in...

Hi @NaturezzZ, I'm not sure I understand your question. You can look at the envoy config generated by Istio on any of the proxies to confirm whether or not the...

Thanks for adding this @NaturezzZ, I left a few comments/suggestions on the wording of the note but it looks like it'll be a helpful clarification.

Re @hzxuzhonghu's comment. IIUC what this enables is setting up a managed mesh where a user specifies "I want a brand-x gateway" but they get an otherwise totally normal Istio...

> Right that is the scenario to my understanding: user can deploy brand-x gateway seamlessly without needing to change Istio gateway resources. @jwendell do you forsee no change to gateway...

And normal here really means it's like a fully istio-compatible thing. For this PR it would be totally bog-standard but presumably you could sub in other images or something and...