mirror of https://github.com/kubernetes/kops.git
Merge pull request #13621 from rifelpet/skip-volume-limits
Skip in-tree volume limits test
This commit is contained in:
commit
4552c5680d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue