Tatsuhiro Tsujikawa

Results 354 comments of Tatsuhiro Tsujikawa

Will do this next time we break the backward compatibility (soname bump).

I think you can workaround this by creating the directory when building docker image.

SSL Passthrough is not supported.

Thank you for suggestion. One of pros for nghttpx is it can connect to backend using HTTP/2 protocol with L7 routing, which nginx lacks at the moment. Con is obviously...

As for location of Ingress controller, and service Pods, Ingress controller is typically running as DaemonSet on dedicated node (e.g, node label selection), and Pods will be on the other...

If I understand correctly, yes. Ingress is L7 thing.

nghttpx can change backend configuration without reloading/process restart. It is just a matter of internal HTTP POST request, and we are done. We use watch interface for Ingress resource, and...

Could you provide a way how to reproduce this, for example, using https://github.com/tensorflow/serving/tree/master/tensorflow_serving/example ?

I tried to reproduce the issue with the following patch to tensorflow_serving/example/mnist_client.py: ```diff diff --git a/tensorflow_serving/example/mnist_client.py b/tensorflow_serving/example/mnist_client.py index 947f7c4..93f1e91 100644 --- a/tensorflow_serving/example/mnist_client.py +++ b/tensorflow_serving/example/mnist_client.py @@ -146,8 +146,9 @@ def do_inference(hostport,...