We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f7eb033 + 42f78c4 commit 8048b98Copy full SHA for 8048b98
test/k8s-integration/main.go
@@ -638,6 +638,14 @@ func generateGKETestSkip(testParams *testParameters) string {
638
skipString = skipString + "|volumes.should.store.data|provisioning.should.provision.storage.with.snapshot.data.source"
639
}
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
+
649
return skipString
650
651
0 commit comments