File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -620,6 +620,15 @@ func generateGKETestSkip(testParams *testParameters) string {
620
620
(! testParams .useGKEManagedDriver && (* curVer ).lessThan (mustParseVersion ("1.17.0" ))) {
621
621
skipString = skipString + "|VolumeSnapshotDataSource"
622
622
}
623
+
624
+ // Starting in 1.23, the storage framework uses ephemeral containers for
625
+ // testing data written to a pod. This is enabled by looking only at the
626
+ // control plane, so it breaks on node skew tests when ephemeral containers
627
+ // exist in the API but aren't supported on the node.
628
+ if nodeVer != nil && nodeVer .lessThan (mustParseVersion ("1.23.0" )) && mustParseVersion ("1.23.0" ).lessThan (curVer ) {
629
+ skipString = skipString + "|volumes.should.store.data|provisioning.should.provision.storage.with.snapshot.data.source"
630
+ }
631
+
623
632
return skipString
624
633
}
625
634
You can’t perform that action at this time.
0 commit comments