An error occurred while fetching the assigned iteration of the selected issue.
Document that users need to scale up their clusters as users are more actively using resource watches
Description
This is outcome of #393002 (closed).
Proposal
Document that users need to scale up their clusters as users are more actively using resource watches. Roughly estimating,
- X users are watching a frontend production environment = X * 15 watches
- Y users are watching a frontend resource in kubernetes dashboard = Y * 1 watch
- Z operations are running (CI-Job/GitOps) = Z * 10 API requests (let's say 10 requests needed to complete the task)
- Total connection at the time is
(X * 15) + (Y * 1) + (Z * 10)
. This should be beloew- Provided that
max-requests-inflight: 400
,{(X * 15) + (Y * 1) + (Z * 10)}
must be less than400
.