tomplus / kubernetes_asyncio

Python asynchronous client library for Kubernetes http://kubernetes.io/
Apache License 2.0
366 stars 71 forks source link

stream doesn't support multichannel communication #12

Open tomplus opened 6 years ago

tomplus commented 6 years ago

Current implementation of web-socket doesn't support multichannel communication.

Now it's impossible to "talk" to a pod like sending a command, reading output, send another command ... in the same connection.

futianshi1314 commented 5 years ago

I know that i will close the issues... https://github.com/tomplus/kubernetes_asyncio/issues/12

athornton commented 2 years ago

Oof. This is biting me as I try to get the test suite working for a kubernetes_asyncio-based JupyterHUb Kubespawner. I'll see if I can figure any of that out.

bobh66 commented 1 year ago

@tomplus - I'm finishing up the DynamicClient work for #209 hopefully this week, and then I'll probably take a shot at this, or at least dig into it and see how much work it is.

bobh66 commented 1 year ago

I have a working implementation of stream() - portforward() is a bit more complicated and I'm still working on that.