Trigger e2e-aws-techpreview on OSImageStream changes for openshift/hypershift#82115
Trigger e2e-aws-techpreview on OSImageStream changes for openshift/hypershift#82115sdminonne wants to merge 1 commit into
Conversation
…pershift The existing e2e-aws-techpreview job installs the HyperShift operator with TechPreviewNoUpgrade feature set, which includes the OSStreams feature gate. Without this trigger, NodePool OSImageStream e2e tests are never exercised in CI because the Default feature set strips spec.osImageStream from the NodePool CRD entirely. Add pipeline_run_if_changed so the job triggers automatically when PRs touch OSImageStream-related code. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: sdminonne 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 |
|
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 ignored due to path filters (1)
📒 Files selected for processing (1)
WalkthroughThe ChangesTechpreview pipeline triggering
Estimated code review effort: 1 (Trivial) | ~2 minutes Suggested reviewers: 🚥 Pre-merge checks | ✅ 15✅ Passed checks (15 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
[REHEARSALNOTIFIER]
Prior to this PR being merged, you will need to either run and acknowledge or opt to skip these rehearsals. Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
|
@sdminonne: 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
pipeline_run_if_changedto the existinge2e-aws-techpreviewjob so it triggers automatically when PRs touch OSImageStream-related codeWhy
The
OSStreamsfeature gate is disabled in the Default feature set, which stripsspec.osImageStreamfrom the NodePool CRD entirely. As a result:e2e-aws/e2e-aws-4-22(Default feature set): OSImageStream tests skip because the field isn't in the CRDe2e-v2-aws(TechPreview): Uses--ginkgo.label-filter='!lifecycle'which excludes the lifecycle-labeled OSImageStream testse2e-aws-techpreview: Has TechPreview enabled and runs lifecycle tests, but is manual-only (always_run: false, norun_if_changed)No CI job currently exercises the NodePool OSImageStream e2e tests automatically.
What
Add
pipeline_run_if_changed: (osimagestream|OSImageStream|os_image_stream|OSStreams)to the existinge2e-aws-techpreviewjob. This triggers the job automatically when PRs modify OSImageStream-related files, providing CI coverage for TechPreview-gated features.Related
🤖 Generated with Claude Code
Summary by CodeRabbit
Updates the OpenShift Hypershift repository’s
e2e-aws-techpreviewCI job to run when pull requests modify OSImageStream-related files, providing automated coverage for TechPreview-gated NodePool OSImageStream tests.