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 1b15343 commit ebd628cCopy full SHA for ebd628c
test/k8s-integration/main.go
@@ -744,6 +744,13 @@ func generateGKETestSkip(testParams *testParameters) string {
744
// Skip mount options test until we fix the invalid mount options for xfs.
745
skipString = skipString + "|csi-gcepd-sc-xfs.*provisioning.should.provision.storage.with.mount.options"
746
747
+ // Skip rwop test when node version is less than 1.32. Test was added only
748
+ // in 1.32 and above, see tags in
749
+ // https://github.com/kubernetes/kubernetes/pull/128244.
750
+ if nodeVer != nil && nodeVer.lessThan(mustParseVersion("1.32.0")) {
751
+ skipString = skipString + "|rwop.pod.created.with.an.initial.fsgroup..new.pod.fsgroup.applied.to.volume.contents"
752
+ }
753
+
754
return skipString
755
}
756
0 commit comments