Skip to content

Commit

Permalink
Added topic on HTTP Proxies (#730)
Browse files Browse the repository at this point in the history
Signed-off-by: Louwrens Benade <tobias.benade@absa.africa>
  • Loading branch information
wltbenade authored Mar 28, 2022
1 parent fd3d2c7 commit 7b5e904
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions content/docs/2.7/operate/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,17 @@ $env:KEDA_HTTP_DEFAULT_TIMEOUT=1000

All applicable scalers will use this timeout. Setting a per-scaler timeout is currently unsupported.

## HTTP Proxies

Some scalers issue HTTP requests to external servers (i.e. cloud services). As certain companies require external servers to be accessed by proxy servers, adding the relevant environment variables to both the KEDA Operator, and KEDA Metrics Server deployments (HTTP_PROXY, HTTPS_PROXY, NO_PROXY, etc.) would allow the scaler to connect via the desired proxy.

```yaml
- env:
HTTP_PROXY: http://proxy.server:port
HTTPS_PROXY: http://proxy.server:port
NO_PROXY: 10.0.0.0/8
```
## Kubernetes Client Parameters
The Kubernetes client config used within KEDA Metrics Adapter can be adjusted by passing the following command-line flags to the binary:
Expand Down

0 comments on commit 7b5e904

Please sign in to comment.