SPLAT-2588: fix hypershift topology variant to match Sippy classification#2897
SPLAT-2588: fix hypershift topology variant to match Sippy classification#2897redhat-chai-bot wants to merge 1 commit into
Conversation
…tion The featuregate-test-analyzer defined requiredHypershiftJobVariants with Topology: hypershift, but Sippy classifies hypershift jobs as Topology: external. This mismatch caused verify-feature-promotion to find 0 tests when querying for hypershift variant test results. Also promotes AWSServiceLBNetworkSecurityGroup to Default on Hypershift to validate the topology fix via CI. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
Pipeline controller notification For optional jobs, comment This repository is configured in: LGTM mode |
|
Hello @redhat-chai-bot! Some important instructions when contributing to openshift/api: |
|
@redhat-chai-bot: This pull request references SPLAT-2588 which is a valid jira issue. Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "5.0.0" version, but no target version was set. DetailsIn response to this:
Instructions 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 openshift-eng/jira-lifecycle-plugin repository. |
|
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 (5)
📝 WalkthroughWalkthroughThe 🚥 Pre-merge checks | ✅ 15✅ Passed checks (15 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Warning There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure. 🔧 golangci-lint (2.12.2)Error: build linters: unable to load custom analyzer "kubeapilinter": tools/_output/bin/kube-api-linter.so, plugin: not implemented Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Slack updated asking for review. I will remove the FG promotion once it is validated, cleaning this PR keeping only the fix. /assign @JoelSpeed @enxebre @stephenfin |
|
@redhat-chai-bot: The following test failed, say
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. |
|
/verified by CI job with dummy verify-feature-promotion showing job evaluating job runs on Hypershift. I am going to ask chai-bot to clean up this fix removing the dummy promotion which is addressed by #2838 |
|
@mtulio: This PR has been marked as verified by DetailsIn response to this:
Instructions 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 openshift-eng/jira-lifecycle-plugin repository. |
Summary
Fixes the topology variant mismatch between
openshift/api'sverify-feature-promotiontool and Sippy's variant classification for hypershift jobs.Problem
The
featuregate-test-analyzerdefinedrequiredHypershiftJobVariantswithTopology: "hypershift", but Sippy classifies hypershift jobs asTopology: "external"(viasetTopology()inpkg/variantregistry/ocp.go). This mismatch causedverify-feature-promotionto find 0 tests when querying Sippy for hypershift variant test results, blocking feature gate promotions for hypershift.Error observed in CI:
Fix
Topology fix: Changed
Topology: "hypershift"toTopology: "external"inrequiredHypershiftJobVariants(intools/codegen/cmd/featuregate-test-analyzer.go) to match Sippy's classification.Validation promotion: Promotes
AWSServiceLBNetworkSecurityGroupto Default on Hypershift (removes cluster-profile-specific gating) to validate the topology fix via theverify-feature-promotionCI check. This is the same promotion as PR #2838.Verification
The
verify-feature-promotionpresubmit should now successfully query Sippy withTopology: "external"and find the hypershift test results. Note: sufficient test runs (>=14) from the periodic jobperiodic-ci-openshift-hypershift-release-5.0-periodics-e2e-aws-ovn-conformance-techprevieware still needed for the promotion to pass.Related: