-
Notifications
You must be signed in to change notification settings - Fork 14.5k
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
Document APIResponseCompression feature gate #41318
Document APIResponseCompression feature gate #41318
Conversation
✅ Pull request preview available for checkingBuilt without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site settings. |
FYI @sftim |
Unknown CLA label state. Rechecking for CLA labels. Send feedback to sig-contributor-experience at kubernetes/community. /check-cla |
It is enabled by default since Kubernetes 1.16, but can be disabled by setting the `--feature-gates` | ||
flag on the API server to `APIResponseCompression=false`. |
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.
It is enabled by default since Kubernetes 1.16, but can be disabled by setting the `--feature-gates` | |
flag on the API server to `APIResponseCompression=false`. | |
It is enabled by default since Kubernetes 1.16 and it can be disabled by including | |
`APIResponseCompression=false` in the `--feature-gates` flag on the API server. |
Modify APIResponseCompression definition Minor edits to streamline paragraphs
/label tide/merge-method-squash |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: tengqm 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 |
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.
/lgtm
This PR improves the docs
depending on the number of pods and their attributes. By compressing the response, the network bandwidth | ||
can be saved and the latency can be reduced. | ||
|
||
To verify if `APIResponseCompression` is working, you can send a **get** or **list** request to the |
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.
nit: if it has a request header, it's a GET (list is a logical verb in API and is not part of HTTP)
LGTM label has been added. Git tree hash: 510334c9912c22938db4654dc6555165fe4b61b6
|
API reference: Document APIResponseCompression feature gate. Fixes #30639