-
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
Promote CSIPersistentVolume feature to GA #69929
Conversation
@jsafrane: You must be a member of the kubernetes/kubernetes-milestone-maintainers github team to set the milestone. In response to this:
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/test-infra repository. |
cc @liggitt, I created one PR for all CSIPersistentVolume GA changes. |
/milestone v1.13 |
/remove-sig api-machinery |
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.
Approved from SIG Storage side.
/lgtm
/approve
/hold We should wait until we get the CSI 1.0 spec changes approved and merged before moving the feature to GA. |
(Let's continue to review so that everything is ready to go) |
Added validation for spec.Attacher and spec.Source.PersistentVolumeName |
@@ -163,6 +163,12 @@ func validateVolumeAttachmentSource(source *storage.VolumeAttachmentSource, fldP | |||
if source.PersistentVolumeName == nil || len(*source.PersistentVolumeName) == 0 { | |||
allErrs = append(allErrs, field.Required(fldPath, "")) | |||
} | |||
if source.PersistentVolumeName != nil { | |||
for _, msg := range apivalidation.ValidatePersistentVolumeName(*source.PersistentVolumeName, false) { |
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.
same comment about only adding this validation in volumeAttachmentStrategy#Validate, and only when the api request is not coming from the v1beta1 API
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.
I think this was fixed by commit below.
needs a bazel update as well |
d784ba1
to
8cfce0a
Compare
/retest |
allErrs := field.ErrorList{} | ||
|
||
if !utilfeature.DefaultFeatureGate.Enabled(features.CSIPersistentVolume) { | ||
allErrs = append(allErrs, field.Forbidden(fldPath, "CSIPersistentVolume disabled by feature-gate")) |
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.
does this have the same issue where you can't delete the Pod object after downgrading to a version where the feature is disabled?
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.
yes
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.
well, not the pod, since this is in PV, but the same issue, yes
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.
pushed a commit to https://github.com/liggitt/kubernetes/commits/csi-ga to resolve this field for this object. I think that looks like what we'll want to do more broadly (consider the existing field on update, and not block in validation based on feature enablement, since it can break update/delete scenarios)
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. I will pull your commit and update this branch.
/retest |
/test pull-kubernetes-e2e-gce-100-performance |
This is ready for final review |
// StatusREST implements the REST endpoint for changing the status of a VolumeAttachment | ||
type StatusREST struct { | ||
store *genericregistry.Store | ||
} |
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.
follow-up: please add a type assertion to ensure this implements enough to patch status:
var _ = rest.Patcher(&StatusREST{})
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jsafrane, liggitt, saad-ali 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 |
optional k8s.io.apimachinery.pkg.apis.meta.v1.Time time = 1; | ||
|
||
// String detailing the error encountered during Attach or Detach operation. | ||
// This string maybe logged, so it should not contain sensitive |
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.
follow-up: s/maybe/may be/ (in existing versions as well)
please open a PR with the follow-ups so we don't forget, even if it sits until 1.14 opens: |
What this PR does / why we need it:
We want CSIPersistentVolume GA in 1.13, kubernetes/enhancements#178
/milestone 1.13
CSI has many sub-features, this is only about the PersistentVolume part we consider stable enough. Inline volumes and block volumes and similar features have / will have their own alpha features and are / will be tracked separately.
Special notes for your reviewer:
Originally, I filled separate PRs for individual commits here, now I open this PR with everything on one place.
Release note:
/sig storage
/sig api-machinery
cc @saad-ali, @liggitt