-
Notifications
You must be signed in to change notification settings - Fork 808
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
Increase default QPS and worker threads of sidecars #1834
Conversation
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.
$ kubectl get pods -A | grep "ebs"
kube-system ebs-csi-controller-68bbbf668b-vbzd2 5/6 CrashLoopBackOff 4 (59s ago) 2m27s
kube-system ebs-csi-controller-68bbbf668b-wr88p 5/6 CrashLoopBackOff 4 (63s ago) 2m27s
kube-system ebs-csi-node-2jr6c 3/3 Running 0 2m27s
kube-system ebs-csi-node-kbzcm 3/3 Running 0 2m27s
$ kubectl logs ebs-csi-controller-68bbbf668b-vbzd2 -n kube-system -c csi-resizer
flag provided but not defined: -worker-threads
resizer uses workers
: https://github.com/kubernetes-csi/external-resizer
Small change otherwise lgtm |
Signed-off-by: Connor Catlett <conncatl@amazon.com>
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.
Thanks!
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: torredil 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 |
@ConnorJC3 , quick inquiry on the trajectory of the ebs controller regarding client side qps and burst config;
|
@AbeOwlu we take the upstream sidecars essentially as-is, so if/when this change is made there it will automatically be integrated in the EBS CSI Driver (likely in the following release). |
Is this a bug fix or adding new feature?
Mostly a bug fix
What is this PR about? / Why do we need it?
Now that #1819 is going to land, the default QPS values are way too low. Bump them up so the driver does not come by default in slow mode.
Includes a check to prevent setting these values if the user has already done so via
additionalArgs
.What testing is done?
CI, local rendering
Use
helm template . --set 'sidecars.provisioner.additionalArgs[0]=--kube-api-qps=999'
to confirm that theadditionalArgs
check is working