Yuval Kohavi
Yuval Kohavi
A plugin to help diagnose problems I encountered when debugging istio. The main feature is that it allows redirecting traffic from a pod to a laptop (which I use to...
To be able to use gloo mesh relay cert it would be good if: - client certs would rotate when they near expiry - gloo mesh can be used in...
This controller runs from istiod and removes not-ready taints from nodes that have CNI pods ready. Part of https://github.com/istio/istio/issues/48286. The idea is that the user configures the infra provider to...
I am experiencing a stack overflow when with gorump. I believe that the core cause is that the stack is not change when performing a system call, but i am...
To reproduce, run a go http server (i used the one here: https://github.com/emc-advanced-dev/unik/tree/master/docs/examples/example_go_httpd) and perform a lot of requests: `while true; do curl http://192.168.4.141:8080/ ; done` (192.168.4.141 is the address...
I had a crash on due bounds not being checked in string1.go to fix it i had to change the loop in findnull() from this: ``` for p[l] != 0...
suggestion: use kube-builder for CRD generation. pros: Kube builder generation is simpler, faster, and has more features than skv2 CRD generation. cons: need to figure out docs integration
Hello, Currently you can do `Library::new()` which loads a library. For my use case it would be create to have `Library::open` that opens an already existing library. - I'm trying...