Merge pull request #865 from ymalen/patch-1

Update README.md
This commit is contained in:
Kubernetes Prow Robot 2019-10-31 18:08:53 -07:00 committed by GitHub
commit 3739db034d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -166,4 +166,9 @@ Specifically check `ipaddress` and `urllib3` package versions to make sure they
Starting from 4.0 release, we do not support directly calling exec or attach calls. you should use stream module to call them. so instead
of `resp = api.connect_get_namespaced_pod_exec(name, ...` you should call `resp = stream(api.connect_get_namespaced_pod_exec, name, ...`.
Using Stream will overwrite the requests protocol in _core_v1_api.CoreV1Api()_
This will cause a failure in non-exec/attach calls. If you reuse your api client object, you will need to
recreate it between api calls that use _stream_ and other api calls.
See more at [exec example](examples/pod_exec.py).