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

@@ -72,6 +72,10 @@ func (p *sioPlugin) CanSupport(spec *volume.Spec) bool {
(spec.Volume != nil && spec.Volume.ScaleIO != nil)
}
func (p *sioPlugin) IsMigratedToCSI() bool {
return false
}
func (p *sioPlugin) RequiresRemount() bool {
return false
}