We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c779af commit a466890Copy full SHA for a466890
test/k8s-integration/main.go
@@ -598,6 +598,11 @@ func generateGKETestSkip(testParams *testParameters) string {
598
skipString = skipString + "|pvc.data.source"
599
}
600
601
+ // Snapshot and restore test fixes were introduced after 1.26 in PR#972.
602
+ if curVer.lessThan(mustParseVersion("1.26.0")) {
603
+ skipString = skipString + "|should.provision.correct.filesystem.size.when.restoring.snapshot.to.larger.size.pvc"
604
+ }
605
+
606
// "volumeMode should not mount / map unused volumes in a pod" tests a
607
// (https://github.com/kubernetes/kubernetes/pull/81163)
608
// bug-fix introduced in 1.16
0 commit comments