diff --git a/pkg/volume/csi/csi_plugin.go b/pkg/volume/csi/csi_plugin.go index fa335a07fc1..08cdbeb59f2 100644 --- a/pkg/volume/csi/csi_plugin.go +++ b/pkg/volume/csi/csi_plugin.go @@ -914,12 +914,3 @@ func highestSupportedVersion(versions []string) (*utilversion.Version, error) { } return highestSupportedVersion, nil } - -func isV0Version(version string) bool { - parsedVersion, err := utilversion.ParseGeneric(version) - if err != nil { - return false - } - - return parsedVersion.Major() == 0 -}