-
Notifications
You must be signed in to change notification settings - Fork 41.9k
PortForward over Websockets Graduates to Beta #125528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
/priority important-soon |
|
/assign @aojea |
|
/cc @jpbetz |
|
|
||
| // owner: @seans3 | ||
| // kep: http://kep.k8s.io/4006 | ||
| // alpha: v1.29 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Accidentally removed this in previous PR.
| ) | ||
|
|
||
| var _ httpstream.Dialer = &fallbackDialer{} | ||
| var _ httpstream.Dialer = &FallbackDialer{} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exporting this structure now in order to make it testable elsewhere.
|
/lgtm |
|
LGTM label has been added. Git tree hash: 19f638a68743101dd409b80cdf36cb38ab014e3b
|
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: aojea, seans3 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/triage accepted |
PortForwardWebsocketsserver-side feature gate is now on by defaultkubectlnow initially attempts to stream using Websockets by default, falling back to SPDY if the initial upgrade fails. SettingPORT_FORWARD_WEBSOCKETSenvironment variable tofalsewill turn off this functionality./kind feature