Hi,
The current implementation in pkg/driver/driver_test.go is utilizing an outdated version of the CSI Driver Sanity Tester library from github.com/kubernetes-csi/csi-test(see github.com/kubernetes-csi/csi-test v2.1.0+incompatible in go.mod). However, the latest available version of the library is v5.2.0 at github.com/kubernetes-csi/csi-test/v5.
The use of the outdated version (v2.1.0+incompatible) is problematic due to known errors and the absence of the complete test suite. The newer versions, especially v5.2.0, address these issues and provide a more robust and comprehensive set of tests.
Hi, The current implementation in
pkg/driver/driver_test.go
is utilizing an outdated version of the CSI Driver Sanity Tester library from github.com/kubernetes-csi/csi-test(seegithub.com/kubernetes-csi/csi-test v2.1.0+incompatible
ingo.mod
). However, the latest available version of the library isv5.2.0
atgithub.com/kubernetes-csi/csi-test/v5
.The use of the outdated version (v2.1.0+incompatible) is problematic due to known errors and the absence of the complete test suite. The newer versions, especially v5.2.0, address these issues and provide a more robust and comprehensive set of tests.
Please see https://github.com/kubernetes-csi/csi-test/releases/tag/v5.2.0 for more details.