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

@@ -107,6 +107,10 @@ func (plugin *rbdPlugin) CanSupport(spec *volume.Spec) bool {
return (spec.Volume != nil && spec.Volume.RBD != nil) || (spec.PersistentVolume != nil && spec.PersistentVolume.Spec.RBD != nil)
}
func (plugin *rbdPlugin) IsMigratedToCSI() bool {
return false
}
func (plugin *rbdPlugin) RequiresRemount() bool {
return false
}