File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -554,12 +554,18 @@ func generateGCETestSkip(testParams *testParameters) string {
554
554
555
555
func generateGKETestSkip (testParams * testParameters ) string {
556
556
skipString := "\\ [Disruptive\\ ]|\\ [Serial\\ ]"
557
+
557
558
curVer := mustParseVersion (testParams .clusterVersion )
558
559
var nodeVer * version
559
560
if testParams .nodeVersion != "" {
560
561
nodeVer = mustParseVersion (testParams .nodeVersion )
561
562
}
562
563
564
+ // Cloning test fixes were introduced after 1.23.
565
+ if curVer .lessThan (mustParseVersion ("1.24.0" )) {
566
+ skipString = skipString + "|\\ [Feature:VolumeSnapshotDataSource\\ ]|pvc.data.source"
567
+ }
568
+
563
569
// "volumeMode should not mount / map unused volumes in a pod" tests a
564
570
// (https://github.com/kubernetes/kubernetes/pull/81163)
565
571
// bug-fix introduced in 1.16
You can’t perform that action at this time.
0 commit comments