We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cee98e4 commit 875af95Copy full SHA for 875af95
test/k8s-integration/main.go
@@ -589,6 +589,11 @@ func generateGKETestSkip(testParams *testParameters) string {
589
skipString = skipString + "|pvc.data.source"
590
}
591
592
+ // Snapshot and restore test fixes were introduced after 1.26 in PR#972.
593
+ if curVer.lessThan(mustParseVersion("1.26.0")) {
594
+ skipString = skipString + "|should.provision.correct.filesystem.size.when.restoring.snapshot.to.larger.size.pvc"
595
+ }
596
+
597
// "volumeMode should not mount / map unused volumes in a pod" tests a
598
// (https://github.com/kubernetes/kubernetes/pull/81163)
599
// bug-fix introduced in 1.16
0 commit comments