Fix InPlacePodVerticalScaling conformance skip regex#82369
Fix InPlacePodVerticalScaling conformance skip regex#82369openshift-merge-bot[bot] merged 1 commit into
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository YAML (base), Central YAML (inherited) Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (3)
🚧 Files skipped from review as they are similar to previous changes (3)
WalkthroughThe ROSA HCP conformance ChangesROSA HCP conformance skip pattern
Estimated code review effort: 1 (Trivial) | ~3 minutes Possibly related PRs
Suggested reviewers: 🚥 Pre-merge checks | ✅ 15✅ Passed checks (15 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
The skip pattern `InPlacePodVerticalScaling.*decrease memory limit below usage` never matched because in the actual test name the text `decrease memory limit below usage` appears before the `[Feature:InPlacePodVerticalScaling]` tag. Simplify to just `decrease memory limit below usage` which matches unambiguously.
473fd3b to
2030ab2
Compare
|
[REHEARSALNOTIFIER]
Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
|
/pj-rehearse periodic-ci-openshift-release-main-nightly-4.21-e2e-rosa-hcp-ovn |
|
@dustman9000: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dustman9000, petr-muller The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/pj-rehearse ack |
|
@dustman9000: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
|
@dustman9000: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Summary
Fix the TEST_SKIPS pattern for InPlacePodVerticalScaling that never matched, causing the HCP Conformance 5.0 job to persistently fail.
Problem
The skip pattern
InPlacePodVerticalScaling.*decrease memory limit below usageexpectsInPlacePodVerticalScalingto appear beforedecrease memory limit below usagein the test name. But the actual test name is:The
[Feature:InPlacePodVerticalScaling]tag comes AFTERdecrease memory limit below usage, so the.*regex never matches. Additionally, the broader skip uses[FeatureGate:InPlacePodVerticalScaling]but the test uses[Feature:InPlacePodVerticalScaling](no "Gate").Fix
Simplify the skip to just
decrease memory limit below usagewhich matches the test name unambiguously.Affected files
ci-operator/config/openshift/release/openshift-release-main__nightly-5.0.yamlci-operator/config/openshift/release/openshift-release-main__nightly-4.22.yamlci-operator/step-registry/rosa/aws/hcp/conformance/rosa-aws-hcp-conformance-workflow.yamlTest plan
Summary by CodeRabbit
TEST_SKIPSregex for the InPlacePodVerticalScaling “decrease memory limit below usage” scenario.InPlacePodVerticalScaling.*prefix from the skip entry so the pattern matches the actual conformance test name, ensuring the intended test is skipped.