John Howard
John Howard
> Looks like this needs a make generate before the tests will pass. Should to be good this time!
Woo!! :tada: :tada: :tada: :tada: :tada: :tada: :tada: Thanks everyone for the years of hard work on getting this passed the finish line!
I would encourage tests before implementations. Otherwise people will wait until there are tests (or maybe I'm just lazy...)
@yangminzhu is this solved by https://github.com/istio/istio/issues/27984?
Are there any examples with `tonic`? I've spent about 4 hours on trying to wrangle this and struggling a bit. My current calling code: ```rust let svc = tls::grpc_connector(address, root_cert)?;...
I did get it working for gRPC services, just not for gRPC clients. Here is the full code if it helps: https://github.com/howardjohn/ztunnel/blob/e7ca3033da71574d668f699fba824685dc7115c8/src/identity/caclient.rs#L46-L50 https://github.com/howardjohn/ztunnel/blob/e7ca3033da71574d668f699fba824685dc7115c8/src/tls/boring.rs#L401-L416
Nice! That got things working for me. The one thing I did have to do was stop using interceptor, which requires body to implement Default, and `Incoming` doesn't. I am...
Unfortunately no. I have tried a way to make it so you can just use one while still being backwards compatible but struggled to make it work. On Sun, May...
If you can get full debug logs from the client it would be ideal. `istioctl proxy-config log --level=debug POD` can turn them on.