Merge pull request #13621 from rifelpet/skip-volume-limits

Skip in-tree volume limits test
This commit is contained in:
Kubernetes Prow Robot 2022-05-08 19:47:18 -07:00 committed by GitHub
commit 4552c5680d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -102,6 +102,13 @@ func (t *Tester) setSkipRegexFlag() error {
skipRegex += "|Topology.Hints"
}
if strings.Contains(cluster.Spec.KubernetesVersion, "v1.25.") {
// this test was being skipped automatically because it isn't applicable with CSIMigration=true which is default
// but skipping logic has been changed and now the test is planned for removal
// ref: https://github.com/kubernetes/kubernetes/pull/109649#issuecomment-1108574843
skipRegex += "|should.verify.that.all.nodes.have.volume.limits"
}
// Ensure it is valid regex
if _, err := regexp.Compile(skipRegex); err != nil {
return err