From d5d2a6ae112bae4b8adaa5c8cc8506137c1c0c4a Mon Sep 17 00:00:00 2001 From: Nabarun Pal Date: Thu, 9 Jan 2020 11:16:00 +0530 Subject: [PATCH] Updates README --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index db4fb94b2..da1349657 100644 --- a/README.md +++ b/README.md @@ -114,12 +114,13 @@ between client-python versions. | 7.0 Alpha/Beta | Kubernetes main repo, 1.11 branch | ✗ | | 7.0 | Kubernetes main repo, 1.11 branch | ✗ | | 8.0 Alpha/Beta | Kubernetes main repo, 1.12 branch | ✗ | -| 8.0 | Kubernetes main repo, 1.12 branch | ✓ | +| 8.0 | Kubernetes main repo, 1.12 branch | ✗ | | 9.0 Alpha/Beta | Kubernetes main repo, 1.13 branch | ✗ | | 9.0 | Kubernetes main repo, 1.13 branch | ✓ | | 10.0 Alpha/Beta | Kubernetes main repo, 1.14 branch | ✗ | | 10.0 | Kubernetes main repo, 1.14 branch | ✓ | -| 11.0 Alpha/Beta | Kubernetes main repo, 1.15 branch | ✓ | +| 11.0 Alpha/Beta | Kubernetes main repo, 1.15 branch | ✗ | +| 11.0 | Kubernetes main repo, 1.15 branch | ✓ | Key: @@ -169,8 +170,8 @@ 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 +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).