File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -638,6 +638,14 @@ func generateGKETestSkip(testParams *testParameters) string {
638
638
skipString = skipString + "|volumes.should.store.data|provisioning.should.provision.storage.with.snapshot.data.source"
639
639
}
640
640
641
+ // Starting in 1.24, the storage framework has a new test case:
642
+ // https://github.com/kubernetes/kubernetes/commit/4a076578451aa27e8ac60beec1fd3f23918c5331,
643
+ // which breaks the node skew tests when the node version
644
+ // is less than 1.24.
645
+ if nodeVer != nil && nodeVer .lessThan (mustParseVersion ("1.24.0" )) {
646
+ skipString = skipString + "|provisioning.should.mount.multiple.PV.pointing.to.the.same.storage.on.the.same.node"
647
+ }
648
+
641
649
return skipString
642
650
}
643
651
You can’t perform that action at this time.
0 commit comments