-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Move volume scheduling and local storage to beta #59391
Conversation
/cc |
f3aecc7
to
f5325be
Compare
Nevermind, ignore my last comment. There is validation that the PV.NodeAffinity field cannot be changed. So there is no need to update predicate invalidation for PV update. I removed the last commit. |
/lgtm |
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 clarify and handle the transitional case where both are set. The alpha should win.
// VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from. | ||
type VolumeNodeAffinity struct { | ||
// Required specifies hard node constraints that must be met. | ||
Required *NodeSelector |
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.
In general, disallow field updates until/unless you know exactly what they are for.
@@ -1497,6 +1500,10 @@ func ValidatePersistentVolume(pv *core.PersistentVolume) field.ErrorList { | |||
nodeAffinitySpecified, errs := validateStorageNodeAffinityAnnotation(pv.ObjectMeta.Annotations, metaPath.Child("annotations")) | |||
allErrs = append(allErrs, errs...) | |||
|
|||
volumeNodeAffinitySpecified, errs := validateVolumeNodeAffinity(pv.Spec.NodeAffinity, specPath.Child("nodeAffinity")) |
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.
What if both this field and the older annotation are set?
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.
The current code will evaluate both if both are set, but it can be changed to have beta be ignored if alpha is set.
@@ -4952,6 +4963,27 @@ func validateStorageNodeAffinityAnnotation(annotations map[string]string, fldPat | |||
return policySpecified, allErrs | |||
} | |||
|
|||
// validateVolumeNodeAffinity tests that the PersistentVolume.NodeAffinity has valid data |
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.
document the bool return
Allow setting PV nodeAffinity if previously unset
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jsafrane, msau42, thockin, verult 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 |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions here. |
Is there documentation for how to use persistent local storage? Can't seem to find anything. |
@mightwork FYI, get a 404 on that link. |
The official kubernetes documentation has a link to the external-storage walkthrough as well |
@ryanwalls my bad. Updated with the correct link. |
What this PR does / why we need it:
@kubernetes/sig-storage-pr-reviews
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #59390
Special notes for your reviewer:
Release note: