mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Merge pull request #51928 from mindprince/pr-45724-fix-build
Automatic merge from submit-queue Make *fakeMountInterface in container_manager_unsupported_test.go implement mount.Interface again. This was broken in #45724 **Release note**: ```release-note NONE ``` /sig storage /sig node /cc @jsafrane, @vishh
This commit is contained in:
commit
dcc1aa0628
@ -69,6 +69,10 @@ func (mi *fakeMountInterface) GetDeviceNameFromMount(mountPath, pluginDir string
|
|||||||
return "", nil
|
return "", nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (mi *fakeMountInterface) MakeRShared(path string) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func fakeContainerMgrMountInt() mount.Interface {
|
func fakeContainerMgrMountInt() mount.Interface {
|
||||||
return &fakeMountInterface{
|
return &fakeMountInterface{
|
||||||
[]mount.MountPoint{
|
[]mount.MountPoint{
|
||||||
|
Loading…
Reference in New Issue
Block a user