Skip to content

Commit 67cfdcd

Browse files
authored
Merge pull request kubernetes-client#864 from kubernetes-client/release-8.0
Release 8.0.0-alpha1
2 parents 810db78 + 81c86eb commit 67cfdcd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

util/src/main/java/io/kubernetes/client/PortForward.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,15 @@
3232
* API (which the Go client uses)
3333
*
3434
* <p>The protocol is undocumented as far as I can tell, but the PR that added it is here:
35-
* https://github.com/kubernetes/kubernetes/pull/33684
35+
* github.com/kubernetes/kubernetes/pull/33684
3636
*
3737
* <p>And the protocol is:
3838
*
39-
* <p>web sockets on server/api/v1/namespaces/<namespace>/pods/<pod>/portforward?ports=80&ports=8080
39+
* <p>web sockets on server/api/v1/namespaces/&lt;namespace&gt;/pods/&lt;pod&gt;/portforward with
40+
* args ports=80 and ports=8080
4041
*
4142
* <p>I/O for first port (80) is on Channel 0 Err for first port (80) is on Channel 1 I/O for second
42-
* port (8080) is on Channel 2 Err for second port (8080) is on Channel 3 <and so on for remaining
43+
* port (8080) is on Channel 2 Err for second port (8080) is on Channel 3 < and so on for remaining
4344
* ports>
4445
*
4546
* <p>The first two bytes of each output stream is the port that is being forwarded in little-endian

0 commit comments

Comments
 (0)