Tomasz Prus

Results 87 comments of Tomasz Prus

Yes, it should be added. Would you like to work on it?

It works well locally: ``` # if you have all dependencies installed: cd doc make html cd build/html python -m http.server ``` but for some reason Read The Docs can't...

This PR https://github.com/kubernetes-client/python/pull/2026 should fix it.

@roycaihw I did evaluation of using the latest version of the openapi-generator. It looks promising, I faced some problems with a validator so far (https://github.com/kubernetes-client/gen/issues/145). There are a lot of...

Thank for reporting the issue. Could you check if you example is correct - it looks like this line "Pod watch stream ended." is printed when you get delete events......

Thanks, definitely it's worth to fix it :+1: But I'm curious what's your use case, because usually this method is not called directly?

`apply_async` returns [AsyncResult](https://docs.python.org/3/library/multiprocessing.html#multiprocessing.pool.AsyncResult) so as you've written it doesn't support callbacks. These functions are auto-generated by OpenAPI Generator so it's not easy to introduce such change. I can suggest using...

Correct me if I'm wrong but you want to have something like this: ```python create_namespaced_pod("pod-1", "ns-1", cb_success, cb_error) create_namespaced_pod("pod-2", "ns-2", cb_success, cb_error) ``` so instead of using `async_req` i suggest...