Skip to content
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

Adding documentation for disabling compression in client-go #978

Merged
merged 4 commits into from
Nov 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions content/docs/2.9/operate/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,11 @@ Some scalers issue HTTP requests to external servers (i.e. cloud services). As c

The Kubernetes client config used within KEDA Operator and KEDA Metrics Adapter can be adjusted by passing the following command-line flags to the binary:

| Adapter Flag | Client Config Setting | Default Value | Description |
| -------------- | ----------------------- | ------------- | -------------------------------------------------------------- |
| kube-api-qps | cfg.QPS | 20.0 | Set the QPS rate for throttling requests sent to the apiserver |
| kube-api-burst | cfg.Burst | 30 | Set the burst for throttling requests sent to the apiserver |
| Adapter Flag | Client Config Setting | Default Value | Description |
| ------------------- | ----------------------- | ------------- | -------------------------------------------------------------- |
| kube-api-qps | cfg.QPS | 20.0 | Set the QPS rate for throttling requests sent to the apiserver |
| kube-api-burst | cfg.Burst | 30 | Set the burst for throttling requests sent to the apiserver |
| disable-compression | cfg.DisableCompression | true | Disable compression for response in k8s restAPI in client-go, see [this Kubernetes issue](https://github.com/kubernetes/kubernetes/issues/112296) for details |

## Configure `MaxConcurrentReconciles` for Controllers

Expand Down