-
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
Support both directory and block device for local volume plugin FileSystem VolumeMode #63011
Support both directory and block device for local volume plugin FileSystem VolumeMode #63011
Conversation
2ce304e
to
73024ed
Compare
/assign |
pkg/apis/core/types.go
Outdated
// Must be a filesystem type supported by the host operating system. | ||
// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. | ||
// +optional | ||
FSType string |
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.
should be a pointer, as the field is optional
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.
Why do we need to use pointer for optional field ? I notice that other persistent volume sources are just using string except AzureDiskVolumeSource
, see https://github.com/kubernetes/kubernetes/blob/master/pkg/apis/core/types.go#L578
https://github.com/kubernetes/kubernetes/blob/master/pkg/apis/core/types.go#L960
...
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.
New optional fields to existing types need to be pointers for backwards compatibility. See #50121
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 there also needs to be defaulting logic in v1/defaults.go
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.
good to know, thanks
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.
ah sorry, I think we may not be able to default the field, because it would not work on windows.
pkg/volume/local/local.go
Outdated
return devicePath, "", err | ||
} | ||
|
||
if string(fileType) == string(mount.FileTypeDirectory) { |
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 be a switch statement
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
pkg/volume/local/local.go
Outdated
} | ||
if string(fileType) == string(mount.FileTypeDirectory) { | ||
return spec.PersistentVolume.Spec.Local.Path, nil | ||
} else if string(fileType) == string(mount.FileTypeBlockDev) { |
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 is only called when path is a block device. Do we need these checks again?
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 is called in MountDevice() and before UnmountDevice(), here, i add FileTypeDirectory
check in order to set deviceMountPath to local volume source path if the local PV is fs dir, so, if we want to remove this check, we need to set deviceMountPath to "" if local PV is fs dir ?
pkg/volume/local/local.go
Outdated
var _ volume.DeviceUmounter = &deviceMounter{} | ||
|
||
func (dm *deviceMounter) UnmountDevice(deviceMountPath string) error { | ||
basemountPath := filepath.Join(dm.plugin.host.GetPluginDir(localVolumePluginName), mount.MountsInGlobalPDPath) |
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.
Can you just do a Dir() on the deviceMountPath?
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.
here is not try to get deviceMountPath dir, we want to get the expected base mount Dir, and then compare with deviceMountPath to see if we need to unmount device.
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.
if we want to remove fs dir check in GetDeviceMountPath
as we pointed out above, we need to add deviceMountPath != ""/ len(...) == 0
check
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.
Can you add a comment here explaining the deviceMountPath
formats that can be passed into here? That will help better understand why we can't just call Dir()
.
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.
sure, done
pkg/volume/local/local.go
Outdated
}, nil | ||
} | ||
|
||
func (dm *deviceMounter) MountDevice(spec *volume.Spec, devicePath string, _ *v1.Pod) (string, string, error) { |
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.
Can you add unit tests for these new functions
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.
sure
pkg/apis/core/types.go
Outdated
// Must be a filesystem type supported by the host operating system. | ||
// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. | ||
// +optional | ||
FSType string |
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 there also needs to be defaulting logic in v1/defaults.go
73024ed
to
87dc3ac
Compare
pkg/volume/local/local.go
Outdated
|
||
switch fileType { | ||
case mount.FileTypeBlockDev: | ||
return dm.mountLocalBlockDevice(spec, devicePath) |
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 SetUp
also have to change, to bind mount from this global path instead?
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. i think so
pkg/volume/local/local.go
Outdated
return dm.mountLocalBlockDevice(spec, devicePath) | ||
case mount.FileTypeDirectory: | ||
// if the given local volume path is of already filesystem directory, return directly | ||
return spec.PersistentVolume.Spec.Local.Path, spec.PersistentVolume.Spec.Local.Path, nil |
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 wonder, can we return nil path for this case? Could UnmountDevice be simplified if it is only called for blockdev scenario?
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 they are the same. deviceMountPath is set to local pv path If it is filesystem dir. and UnmountPath will not be executed for this case.
pkg/apis/core/types.go
Outdated
@@ -1442,6 +1442,12 @@ type LocalVolumeSource struct { | |||
// Block devices can be represented only by VolumeMode=Block, which also requires the |
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 comment also needs to be updated because now you can specify a block device with VolumeMode=Filesystem.
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.
Deleted the last three lines
87dc3ac
to
e671bb5
Compare
03caeec
to
5bc823f
Compare
/retest |
@PatrickLang raw block device is not supported on Windows k8s now. Will |
/test pull-kubernetes-cross |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jsafrane, msau42, NickrenREN, thockin 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 |
Automatic merge from submit-queue (batch tested with PRs 63011, 68089, 67944, 68132). If you want to cherry-pick this change to another branch, please follow the instructions here: https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md. |
@NickrenREN can you also investigate if the functionality of local volumes (bind mount/read/write/fsgroup) would have worked before this change if the volume was created with permissions that kubelet did not have? We need to figure out if this has the potential to be a regression, and if so, we need an appropriate release note with "ACTION REQUIRED" |
We discussed, this is only an issue with /tmp directories, which is only a testing issue |
Support both directory and block device for local volume plugin FileSystem VolumeMode
xref: local storage dynamic provisioning design #1914
What this PR does / why we need it:
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 #
Special notes for your reviewer:
Release note: