Add IsMigratableToCSI to volume plugin interface

This commit is contained in:
David Zhu
2019-01-17 11:56:14 -08:00
parent 5e86fa43f5
commit d8c9dc5bb5
36 changed files with 212 additions and 4 deletions

View File

@@ -84,6 +84,10 @@ func (plugin *nfsPlugin) CanSupport(spec *volume.Spec) bool {
(spec.Volume != nil && spec.Volume.NFS != nil)
}
func (plugin *nfsPlugin) IsMigratedToCSI() bool {
return false
}
func (plugin *nfsPlugin) RequiresRemount() bool {
return false
}