We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6f2c6cd + 5992ce2 commit 06f0ed9Copy full SHA for 06f0ed9
test/k8s-integration/main.go
@@ -566,6 +566,12 @@ func generateGKETestSkip(testParams *testParameters) string {
566
skipString = skipString + "|fsgroupchangepolicy"
567
}
568
569
+ // Generic Ephemeral volume is only enabled in version 1.21.
570
+ // If there's node skew Generic Ephemeral volume tests might not be skipped correctly
571
+ if curVer.lessThan(mustParseVersion("1.21.0")) || (nodeVer != nil && nodeVer.lessThan(mustParseVersion("1.21.0"))) {
572
+ skipString = skipString + "|Generic\\sEphemeral-volume"
573
+ }
574
+
575
// ExpandCSIVolumes feature is beta in k8s 1.16
576
// For GKE deployed PD CSI driver, resizer sidecar is enabled in 1.16.8-gke.3
577
if (testParams.useGKEManagedDriver && curVer.lessThan(mustParseVersion("1.16.8-gke.3"))) ||
0 commit comments