You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Tell us about your request
Currently, other DaemonSet add-ons like aws-ebs-csi-driver, vpc-cni and kube-proxy do their updates with this updateStrategy:
With a maxUnavailable: 10% setting, this could be done way faster, as in the >100 nodes case, it can do 10 pods at a time.
Can we get the EFS driver policy to match other add-ons, or have it be configurable in the add-on configuration?
Which service(s) is this request for?
EKS aws-efs-csi-driver managed add-on
Tell us about the problem you're trying to solve. What are you trying to do, and why is it hard?
In a large cluster (>100 nodes), this can make updating the add-on timeout as it waits for the desired replicas.
Are you currently working around this issue?
Re-running the add-on update succeeds as the image is cached on the nodes by this point, so the rollout is faster.
We could take advantage of Managed Fields to take ownership of this one piece of the DaemonSet, but this would be a more complex solution that could break if EKS adds management of this field in future.
We could also do something similar to Cilium's pre-flight where we make each node download the image before we update the add-on, but again, this is an overkill solution.
The text was updated successfully, but these errors were encountered:
Community Note
Tell us about your request
Currently, other DaemonSet add-ons like
aws-ebs-csi-driver
,vpc-cni
andkube-proxy
do their updates with this updateStrategy:Whereas
aws-efs-csi-driver
has this policy:With a
maxUnavailable: 10%
setting, this could be done way faster, as in the >100 nodes case, it can do 10 pods at a time.Can we get the EFS driver policy to match other add-ons, or have it be configurable in the add-on configuration?
Which service(s) is this request for?
EKS aws-efs-csi-driver managed add-on
Tell us about the problem you're trying to solve. What are you trying to do, and why is it hard?
In a large cluster (>100 nodes), this can make updating the add-on timeout as it waits for the desired replicas.
Are you currently working around this issue?
Re-running the add-on update succeeds as the image is cached on the nodes by this point, so the rollout is faster.
We could take advantage of Managed Fields to take ownership of this one piece of the DaemonSet, but this would be a more complex solution that could break if EKS adds management of this field in future.
We could also do something similar to Cilium's pre-flight where we make each node download the image before we update the add-on, but again, this is an overkill solution.
The text was updated successfully, but these errors were encountered: