File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -566,6 +566,12 @@ func generateGKETestSkip(testParams *testParameters) string {
566566 skipString = skipString + "|fsgroupchangepolicy"
567567 }
568568
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+
569575 // ExpandCSIVolumes feature is beta in k8s 1.16
570576 // For GKE deployed PD CSI driver, resizer sidecar is enabled in 1.16.8-gke.3
571577 if (testParams .useGKEManagedDriver && curVer .lessThan (mustParseVersion ("1.16.8-gke.3" ))) ||
You can’t perform that action at this time.
0 commit comments