Skip to content

Commit eb1ca9d

Browse files
authored
Merge pull request #45734 from stevsmit/GH45628
Swaps references of SPDY with HTTP2
2 parents 2a16f8f + 7221e5f commit eb1ca9d

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

modules/migration-configuring-proxies.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ For {product-title} 4.1 and earlier versions, you must configure proxies in the
1313

1414
For {product-title} 4.2 to {product-version}, the {mtc-full} ({mtc-short}) inherits the cluster-wide proxy settings. You can change the proxy parameters if you want to override the cluster-wide proxy settings.
1515

16-
You must configure the proxies to allow the SPDY protocol and to forward the `Upgrade HTTP` header to the API server. Otherwise, an `Upgrade request required` error is displayed. The `MigrationController` CR uses SPDY to run commands within remote pods. The `Upgrade HTTP` header is required in order to open a websocket connection with the API server.
16+
You must configure the proxies to allow the `HTTP/2` protocol and to forward the `Upgrade HTTP` header to the API server. Otherwise, an `Upgrade request required` error is displayed. The `MigrationController` CR uses `HTTP/2` to run commands within remote pods. The `Upgrade HTTP` header is required in order to open a websocket connection with the API server.
1717

1818
.Direct volume migration
1919

modules/nodes-containers-port-forwarding-protocol.adoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// * nodes/nodes-containers-port-forwarding.adoc
44

55
[id="nodes-containers-port-forwarding-protocol_{context}"]
6-
= Protocol for initiating port forwarding from a client
6+
= Protocol for initiating port forwarding from a client
77

88
Clients initiate port forwarding to a pod by issuing a request to the
99
Kubernetes API server:
@@ -26,7 +26,7 @@ For example:
2626

2727
After sending a port forward request to the API server, the client upgrades the
2828
connection to one that supports multiplexed streams; the current implementation
29-
uses link:http://www.chromium.org/spdy[*SPDY*].
29+
uses link:https://httpwg.org/specs/rfc7540.html[*Hyptertext Transfer Protocol Version 2 (HTTP/2)*].
3030

3131
The client creates a stream with the `port` header containing the target port in
3232
the pod. All data written to the stream is delivered via the kubelet to the
@@ -35,4 +35,3 @@ connection is delivered back to the same stream in the client.
3535

3636
The client closes all streams, the upgraded connection, and the underlying
3737
connection when it is finished with the port forwarding request.
38-

modules/nodes-containers-remote-commands-protocol.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Additionally, the client can add parameters to the request to indicate if:
3737

3838
After sending an `exec` request to the API server, the client upgrades the
3939
connection to one that supports multiplexed streams; the current implementation
40-
uses *SPDY*.
40+
uses *HTTP/2*.
4141

4242
The client creates one stream each for stdin, stdout, and stderr. To distinguish
4343
among the streams, the client sets the `streamType` header on the stream to one

0 commit comments

Comments
 (0)