-
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
Bugfix/csi default fs type #65499
Bugfix/csi default fs type #65499
Conversation
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
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. I understand the commands that are listed here. |
5b39796
to
03f36bd
Compare
/ok-to-test |
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.
A release note should be added that FSType is not defaulted anymore.
Also, I think the comment in pkg/apis/core/types.go and staging/src/k8s.io/api/core/v1/types.go need to be updated (and run make update
to regenerate all the documentation)
pkg/volume/csi/csi_mounter_test.go
Outdated
|
||
//Test the default value of file system type is not overriden | ||
if len(csiMounter.spec.PersistentVolume.Spec.CSI.FSType) != 0 { | ||
t.Fatalf("default value of file system type was overriden by type %s" , csiMounter.spec.PersistentVolume.Spec.CSI.FSType) |
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.
This could just be Errorf instead of Fatalf. Fatalf will exit and not run the remainder of the test.
pkg/volume/csi/csi_mounter.go
Outdated
@@ -34,7 +34,7 @@ import ( | |||
"k8s.io/kubernetes/pkg/volume/util" | |||
) | |||
|
|||
const defaultFSType = "ext4" | |||
const defaultFSType = "" |
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 would remove this whole variable
Also, it would be good to put the generated files into a separate commit. |
Please squash the commits. And should it include removal of "Implicitly inferred to be "ext4" if unspecified." in types.go? |
In addition to updating the comments in types.go, can you also say in the release note "ACTION REQUIRED: Removes defaulting of CSI fsType to ext4. CSI plugins that depended on this default need to be updated" |
/assign @vladimirvivien |
You also need to update staging/src/k8s.io/api/core/v1/types.go, and then run |
b47aa4c
to
1b4dba8
Compare
5aa8bb4
to
73822ce
Compare
/retest |
Release note has been updated, and all known production csi drivers have been checked. |
Also, email has been sent to kubernetes-sig-storage |
@msau42 thanks for doing that research !! |
/hold cancel thanks. this seems worthwhile (and safe, given the research done) to pick back to maintenance branches. |
/test all [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue (batch tested with PRs 55023, 65499). If you want to cherry-pick this change to another branch, please follow the instructions here. |
@krunaljain thanks, can you pick to 1.11 as well? |
@krunaljain: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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. I understand the commands that are listed here. |
This PR address the issue mentioned in the following ticket #65122
The FSType string will now not be defaulted to ext4. Removes defaulting of CSI file system type to ext4. CSI plugins that depended on this default need to be updated as the fsType would remain an empty string if not provided and would not default to ext4. CSI spec allows for an empty fstype string. This is intended for non-block plugins like nfs and gluster where filesystems are not separately created on the volume. But currently the default file system is overridden to ext4 which makes the above case redundant. This commit prevents such an overridding.