Sargun Dhillon
Sargun Dhillon
Can you turn on auditing on our cluster and give us a dump of the bootstrap?
How did you build your VK? Can you pass klog options / set klog debug to 100?
🤦 We need to implement this apparently: http://pr.k8s.io/79391
I have a few different suggestions on how we can handle this. We expose an option in Server to opt into soft-deletes mode. In soft-deletes mode, it will call the...
Also, API question: Should we change DeletePod to optionally return a non-nil pod (status) object, as the terminal state? The entire point of this exercise is to signal northbound what...
see: https://github.com/virtual-kubelet/virtual-kubelet/pull/599 Another open question: Is there a way for providers to "say" they want soft deletes as well?
I'm having issues with coming up with the right API semantics. What do we do if a pod is deleted from the provider, but the provider never ever sends a...
@Praetonus I'm somewhat ignorant, since I've only been reading the code for a couple hours, how is the OS X kqueue implementation thread unsafe? It looks like `ponyint_asio_backend_dispatch` is executed...
How is it suggested to use protojson with streaming data? Use `encoding/json`, like: ```go var data interface{} d := json.NewDecoder(os.Stdin) _ = d.Decode(&data) b := json.Marshal(data) protojson.Umarshal(b, &m) ```
The problem with `ioutil.ReadAll` is it doesn't allow for a stream, and requires an EOF to stop reading: > ReadAll reads from r until an error or EOF and returns...