@@ -114,12 +114,13 @@ between client-python versions.
114
114
| 7.0 Alpha/Beta | Kubernetes main repo, 1.11 branch | ✗ |
115
115
| 7.0 | Kubernetes main repo, 1.11 branch | ✗ |
116
116
| 8.0 Alpha/Beta | Kubernetes main repo, 1.12 branch | ✗ |
117
- | 8.0 | Kubernetes main repo, 1.12 branch | ✓ |
117
+ | 8.0 | Kubernetes main repo, 1.12 branch | ✗ |
118
118
| 9.0 Alpha/Beta | Kubernetes main repo, 1.13 branch | ✗ |
119
119
| 9.0 | Kubernetes main repo, 1.13 branch | ✓ |
120
120
| 10.0 Alpha/Beta | Kubernetes main repo, 1.14 branch | ✗ |
121
121
| 10.0 | Kubernetes main repo, 1.14 branch | ✓ |
122
- | 11.0 Alpha/Beta | Kubernetes main repo, 1.15 branch | ✓ |
122
+ | 11.0 Alpha/Beta | Kubernetes main repo, 1.15 branch | ✗ |
123
+ | 11.0 | Kubernetes main repo, 1.15 branch | ✓ |
123
124
124
125
Key:
125
126
@@ -169,8 +170,8 @@ Specifically check `ipaddress` and `urllib3` package versions to make sure they
169
170
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
170
171
of ` resp = api.connect_get_namespaced_pod_exec(name, ... ` you should call ` resp = stream(api.connect_get_namespaced_pod_exec, name, ... ` .
171
172
172
- Using Stream will overwrite the requests protocol in _ core_v1_api.CoreV1Api()_
173
- This will cause a failure in non-exec/attach calls. If you reuse your api client object, you will need to
173
+ Using Stream will overwrite the requests protocol in _ core_v1_api.CoreV1Api()_
174
+ This will cause a failure in non-exec/attach calls. If you reuse your api client object, you will need to
174
175
recreate it between api calls that use _ stream_ and other api calls.
175
-
176
+
176
177
See more at [ exec example] ( examples/pod_exec.py ) .
0 commit comments