AGENT-1517: run IRI deletion tests#79305
Conversation
|
@andfasano: This pull request references AGENT-1517 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 (1)
🚧 Files skipped from review as they are similar to previous changes (1)
WalkthroughThe CI job Changese2e IRI Test Execution Strategy
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 12✅ Passed checks (12 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: andfasano 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 |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In
`@ci-operator/config/openshift/machine-config-operator/openshift-machine-config-operator-main.yaml`:
- Around line 109-111: The commands block currently runs two make invocations
without errexit so a failing first command could be masked; update the multiline
`commands:` block to enable shell errexit (e.g., add `set -o errexit` or `set
-e` as the first line) so that `make test-e2e-iri` failing will stop the step
before `TAGS=iri_delete make test-e2e-iri` runs; modify the `commands` block
containing `make test-e2e-iri` and `TAGS=iri_delete make test-e2e-iri`
accordingly.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository YAML (base), Central YAML (inherited)
Review profile: CHILL
Plan: Enterprise
Run ID: 1f778a62-3c9b-4c9c-a1af-d04ac15fdc43
📒 Files selected for processing (1)
ci-operator/config/openshift/machine-config-operator/openshift-machine-config-operator-main.yaml
a9d552b to
e249ac0
Compare
|
[REHEARSALNOTIFIER]
Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
|
@andfasano: 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. |
This patch adds the IRI deletion e2e tests to the iso-no-registry job.
Requires openshift/machine-config-operator#6041
IRI Deletion E2E Tests for Machine Config Operator CI
This PR updates the OpenShift CI configuration for the machine-config-operator repository to add IRI (Isolated Red Image) deletion validation to the iso-no-registry end-to-end job.
Practically, the change modifies the e2e-compact-ipv4-iso-no-registry step in ci-operator/config/openshift/machine-config-operator/openshift-machine-config-operator-main.yaml so the iri-e2e-step runs two commands: the existing standard IRI e2e tests (make test-e2e-iri) and then the deletion-specific IRI tests (TAGS=iri_delete make test-e2e-iri) under set -xeuo pipefail. This ensures both regular IRI behavior and IRI deletion are exercised in the machine-config-operator CI job that runs without a registry.