John Howard
John Howard
Pushing the image now
gcr.io/istio-testing/fake-registry:1.4 pushed
The community meetings are for the community. Office hours are for developers. I don't know why we keep making this a big deal. Just stick a meeting on the calendar...
I very much do not think we need to formalize this or have anyone drive... we are way over thinking this. If developers are in need of help, why are...
There was some discussion of this in steering, currently this doesn't seem to be the right time to add something like this to Istio. There is some possible interest in...
This seems to be a bug in Envoy. `curl -X POST localhost:15000/'drain_listeners?inboundonly'`: works `curl -X POST localhost:15000/'drain_listeners?inboundonly&graceful'`: does not (that is, it applies to outbound traffic)
The logic in envoy: ``` if (graceful) { // Ignore calls to /drain_listeners?graceful if the drain sequence has // already started. if (!server_.drainManager().draining()) { server_.drainManager().startDrainSequence([this, stop_listeners_type, skip_exit]() { if (!skip_exit)...
Opened https://github.com/envoyproxy/envoy/issues/35020
Just to get on the same page on terminology - drain in this context means "encourage clients to go away gracefully". i.e. send `connection: close`. When it gets a SIGTERM,...
BTW not sure if the concern was behavior or timing but this was merged in Envoy: https://github.com/envoyproxy/envoy/pull/37873