We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b509c4 commit 65c0b01Copy full SHA for 65c0b01
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