-
Notifications
You must be signed in to change notification settings - Fork 40.1k
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
Remove attachable volume limit from node's status capacity #126924
Conversation
This issue is currently awaiting triage. If a SIG or subproject determines this is a relevant issue, they will accept it by applying the The Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
/cc @jsafrane |
/cc @msau42 Can you take a look when you have time? |
@@ -112,6 +112,7 @@ func (nim *nodeInfoManager) InstallCSIDriver(driverName string, driverNodeID str | |||
} | |||
|
|||
nodeUpdateFuncs := []nodeUpdateFunc{ | |||
removeMaxAttachLimit(driverName), // remove in 1.34 |
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.
Please update the comment with a reason why should it be removed in 1.34.
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.
updated.
The release note says |
e469687
to
47eed55
Compare
@jsafrane The release note may not include the details of the change. For end users, once the kubelet is restarted or upgraded to 1.32, all the CSI drivers will be re-registered. during the re-registration, the volume limits in node status will be removed if those specified CSI driver is still installed on the cluster. If the CSI driver has already been uninstalled, the node status volume limits will also be removed. It's an existing behavior that was not introduced by this PR. edit: the release note is updated. |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: carlory, jsafrane 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 |
/lgtm |
LGTM label has been added. Git tree hash: f1799a5e19225c6d4dfc9b53ebcca0a500dc0682
|
@carlory still, please update the release note to emphasize the limit is removed from Node, but it's still enforced using a limit in CSINode objects. |
What type of PR is this?
/kind feature
What this PR does / why we need it:
A follow-up of #124003
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Does this PR introduce a user-facing change?
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: