Skip to content

INTEROP-9415: Remove non-interop test steps from OPP CI configs - #83356

Open
amp-rh wants to merge 1 commit into
openshift:mainfrom
amp-rh:interop-9415-remove-non-interop-steps
Open

INTEROP-9415: Remove non-interop test steps from OPP CI configs#83356
amp-rh wants to merge 1 commit into
openshift:mainfrom
amp-rh:interop-9415-remove-non-interop-steps

Conversation

@amp-rh

@amp-rh amp-rh commented Aug 12, 2026

Copy link
Copy Markdown
Contributor

TL;DR

Pure deletion PR: removes 3 non-interop test steps and their orphaned dependencies from all 6 OPP interop jobs. No new code, no behavior changes to remaining steps. Each removed step is already validated by its product's own CI.

Why This Change

OPP interop jobs exist to validate that ACM, ACS, ODF, and Quay work together on a shared OCP cluster. Three of the test steps in the current pipeline do not test any cross-product behavior:

Step What it actually tests Why it's not interop
acm-tests-grc ACM GRC policy CRUD (create, apply, verify, delete) Passes identically whether ACS/ODF/Quay are present or not. Covered by stolostron CI.
acm-tests-alc ACM console UI lifecycle (login, navigation, cluster views) Pure UI functional tests; no interaction with other OPP products. Covered by stolostron CI.
openshift-extended-test OCP Cluster_Observability e2e Tests OCP platform observability, not OPP product interactions. Covered by OCP CI.

These steps add runtime (the openshift-extended-test step alone can take 30-60 minutes) and introduce failure modes unrelated to interop. When they fail, they generate Firewatch tickets that require triage time to classify as "not an interop issue," diluting the signal-to-noise ratio of the pipeline.

These steps were evaluated and confirmed to have zero dependency on or interaction with ACS, ODF, or Quay APIs, services, or state. They pass identically on clusters with and without the other OPP products installed.

Removing them reduces job runtime, eliminates false-positive Firewatch tickets from non-interop test failures, and sharpens the pipeline's focus on cross-product validation. All interop-relevant steps (policy deployment via acm-policies-openshift-plus, CLC cluster creation, OPP app lifecycle, observability for OPP-specific scenarios) remain.

What changed

Steps removed from test: sections:

Step Removed From Why it's not interop
acm-tests-grc 3 AWS jobs Pure ACM GRC policy testing; covered by stolostron CI
acm-tests-alc 3 AWS jobs Pure ACM UI lifecycle testing; covered by stolostron CI
openshift-extended-test 3 AWS + 3 vSphere jobs Pure OCP Cluster_Observability; covered by OCP CI

Orphaned config also removed:

Type Items Why orphaned
base_images acmqe-grc-test, console-e2e, tests-private Only consumed by removed steps (from: field in step refs)
env vars TEST_IMPORTANCE, TEST_SCENARIOS Only consumed by openshift-extended-test

Review guide

All 3 files have identical removals (symmetric across OCP versions). Reviewing one file covers the full change. Start with:

Core file (review this, the other two are identical):

  • ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp4.22.yaml (-20 lines)

Confirm-identical files:

  • stolostron-policy-collection-main__ocp5.0.yaml (-20 lines)
  • stolostron-policy-collection-main__ocp5.1.yaml (-20 lines)

What stays

All interop-relevant steps remain: acm-policies-openshift-plus, acm-tests-clc-create, acm-opp-app, interop-tests-ocs-tests, quay-tests-quay-interop-test, acm-tests-observability, and the install/health-check chains.

Risk areas

  • Low risk. This is purely subtractive; no logic changes, no new steps.
  • IGNORE_SECONDARY_POLICIES env var is NOT removed; it's consumed by acm-policies-openshift-plus (not by any removed step).
  • clc-ui-e2e base image is NOT removed; it's consumed by acm-tests-clc-create.
  • No make update changes needed (step refs resolved at runtime by ci-operator).

Testing

  • Prow rehearsals ran for all 3 config variants (AWS + vSphere per version).
  • Verified remaining steps are unchanged by diffing the test: sections before/after.
  • Confirmed removed base_images have no other consumers in these configs.

Jira

  • Task: INTEROP-9415 (Remove non-interop test steps from OPP CI configs)
  • Parent: INTEROP-9323 (Achieve 90%+ stability for OPP interop-only test suites)

Part of OPP Q3 interop improvements (umbrella: #83405).

Summary by CodeRabbit

This PR updates six OPP interop jobs for OCP 4.22, 5.0, and 5.1. It removes the non-interop acm-tests-grc, acm-tests-alc, and openshift-extended-test steps from the AWS and vSphere workflows.

It also removes the unused acmqe-grc-test, console-e2e, and tests-private base images, plus the TEST_IMPORTANCE and TEST_SCENARIOS environment variables. Remaining interop steps are unchanged.

Rehearsal validation

Steps in this PR: Removal of 3 non-interop test steps from CI configs

Validated via structural CI checks and the combined batch PR (#83405) rehearsals.

This PR removes step references from ci-operator configs. No new steps are introduced. Validation is through structural CI checks (ci-operator-config, ci-operator-registry, step-registry-metadata) and the batch PR's rehearsals, which run the updated pipeline without the removed steps.

Rehearsal ack rationale: All rehearsal failures are caused by known infrastructure issues (ACS upstream scanner timeout, ACM S3 credential rotation) unrelated to this PR's changes. All structural CI checks (ci-operator-config, ci-operator-registry, step-registry-shellcheck, yamllint, generated-config) pass. See batch PR #83405 for full rehearsal results and analysis.

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Aug 12, 2026
@openshift-ci-robot

openshift-ci-robot commented Aug 12, 2026

Copy link
Copy Markdown
Contributor

@amp-rh: This pull request references INTEROP-9415 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 task to target the "5.0.0" version, but no target version was set.

Details

In response to this:

Summary

  • Remove acm-tests-grc, acm-tests-alc, and openshift-extended-test step refs from all OPP interop job configs (OCP 4.22, 5.0, 5.1)
  • These single-product test steps don't meet the interop definition and are already validated by each product's own CI (stolostron CI for ACM steps, OCP CI for openshift-extended-test)
  • Also removes orphaned base_images (acmqe-grc-test, tests-private) and env vars (TEST_IMPORTANCE, TEST_SCENARIOS) that only served the removed steps

Steps removed

Step Removed From Rationale
acm-tests-grc AWS jobs Pure ACM GRC policy testing; covered by stolostron CI
acm-tests-alc AWS jobs Pure ACM UI lifecycle testing; covered by stolostron CI
openshift-extended-test AWS + vSphere jobs Pure OCP Cluster_Observability; covered by OCP CI

Config files modified

All under ci-operator/config/stolostron/policy-collection/:

  • stolostron-policy-collection-main__ocp4.22.yaml
  • stolostron-policy-collection-main__ocp5.0.yaml
  • stolostron-policy-collection-main__ocp5.1.yaml

Jira: INTEROP-9415
Parent: INTEROP-9323 (Achieve 90%+ stability for OPP interop-only test suites)

/cc @CSPI-QE

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.

@openshift-ci

openshift-ci Bot commented Aug 12, 2026

Copy link
Copy Markdown
Contributor

@amp-rh: GitHub didn't allow me to request PR reviews from the following users: CSPI-QE.

Note that only openshift members and repo collaborators can review this PR, and authors cannot review their own PRs.

Details

In response to this:

Summary

  • Remove acm-tests-grc, acm-tests-alc, and openshift-extended-test step refs from all OPP interop job configs (OCP 4.22, 5.0, 5.1)
  • These single-product test steps don't meet the interop definition and are already validated by each product's own CI (stolostron CI for ACM steps, OCP CI for openshift-extended-test)
  • Also removes orphaned base_images (acmqe-grc-test, tests-private) and env vars (TEST_IMPORTANCE, TEST_SCENARIOS) that only served the removed steps

Steps removed

Step Removed From Rationale
acm-tests-grc AWS jobs Pure ACM GRC policy testing; covered by stolostron CI
acm-tests-alc AWS jobs Pure ACM UI lifecycle testing; covered by stolostron CI
openshift-extended-test AWS + vSphere jobs Pure OCP Cluster_Observability; covered by OCP CI

Config files modified

All under ci-operator/config/stolostron/policy-collection/:

  • stolostron-policy-collection-main__ocp4.22.yaml
  • stolostron-policy-collection-main__ocp5.0.yaml
  • stolostron-policy-collection-main__ocp5.1.yaml

Jira: INTEROP-9415
Parent: INTEROP-9323 (Achieve 90%+ stability for OPP interop-only test suites)

/cc @CSPI-QE

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 kubernetes-sigs/prow repository.

@coderabbitai

coderabbitai Bot commented Aug 12, 2026

Copy link
Copy Markdown
Contributor

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Repository YAML (base), Central YAML (inherited)

Review profile: CHILL

Plan: Pro Plus

Run ID: b0e3cbc6-35f9-4dbc-9a57-109d576056e2

📥 Commits

Reviewing files that changed from the base of the PR and between cee0b7e and b1fdc90.

📒 Files selected for processing (3)
  • ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp4.22.yaml
  • ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp5.0.yaml
  • ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp5.1.yaml
💤 Files with no reviewable changes (3)
  • ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp4.22.yaml
  • ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp5.0.yaml
  • ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp5.1.yaml

Included review availability: Your plan includes up to 2 reviews per rolling hour; 1 remains after this review.


Walkthrough

The policy-collection configurations for OCP 4.22, 5.0, and 5.1 remove obsolete base images, test environment variables, and interop test references from AWS and vSphere jobs.

Changes

Interop configuration cleanup

Layer / File(s) Summary
Remove obsolete base images
ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp4.22.yaml, ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp5.0.yaml, ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp5.1.yaml
The configurations remove the acmqe-grc-test, console-e2e, and tests-private base-image definitions.
Trim interop job settings and tests
ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp4.22.yaml, ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp5.0.yaml, ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp5.1.yaml
AWS and vSphere jobs no longer define TEST_IMPORTANCE or TEST_SCENARIOS. AWS no longer references GRC, ALC, or OpenShift extended tests. vSphere no longer references OpenShift extended tests.

Estimated code review effort: 1 (Trivial) | ~5 minutes

Merge Risk: ⚪ Minimal · up to b1fdc

This PR removes non-interop CI steps and their orphaned configuration without changing the remaining interop coverage; no actionable merge-blocking risk remains beyond normal checks and review.

🚥 Pre-merge checks | ✅ 15
✅ Passed checks (15 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Stable And Deterministic Test Names ✅ Passed The PR changes only three YAML configs and deletes step refs, base images, and env vars; the diff introduces no Ginkgo title declarations or dynamic test-name values.
Test Structure And Quality ✅ Passed The parent-to-HEAD diff changes only three YAML CI configuration files, with 60 deletions and no added Ginkgo test code; this check is inapplicable.
Microshift Test Compatibility ✅ Passed The PR changes only three ci-operator YAML files and deletes 60 lines; the diff adds no Ginkgo e2e tests or test declarations, so this check is inapplicable.
Single Node Openshift (Sno) Test Compatibility ✅ Passed The diff contains only 60 YAML deletions; no new Ginkgo tests, Go files, or added It/Describe/Context/When calls exist to assess for SNO assumptions.
Topology-Aware Scheduling Compatibility ✅ Passed The diff only deletes CI test references, environment variables, and base-image entries from three ci-operator YAML files; it adds no deployment, operator, controller, or scheduling constraints.
Ote Binary Stdout Contract ✅ Passed The PR changes only 60 lines in three YAML configs, all deletions; no executable OTE source or process-level stdout writes changed.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed The commit changes only three YAML configs and deletes 20 lines from each; it adds no Ginkgo tests or network-dependent code.
No-Weak-Crypto ✅ Passed The PR diff contains only 60 deletions across three YAML files and no added content, so it introduces no weak crypto or secret-comparison implementation.
Container-Privileges ✅ Passed The PR diff only deletes test steps, images, and env vars; it adds no privilege-related settings, and all three resulting YAML files contain none of the listed criteria.
No-Sensitive-Data-In-Logs ✅ Passed The commit contains only 60 deletions in three YAML configs, with no added lines or logging and no sensitive-data exposure introduced.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly summarizes the removal of non-interop test steps from the OPP CI configurations.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@openshift-ci

openshift-ci Bot commented Aug 12, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: amp-rh
Once this PR has been reviewed and has the lgtm label, please assign jan-law for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@amp-rh

amp-rh commented Aug 13, 2026

Copy link
Copy Markdown
Contributor Author

/pj-rehearse skip

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amp-rh: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@openshift-merge-bot openshift-merge-bot Bot added the rehearsals-ack Signifies that rehearsal jobs have been acknowledged label Aug 13, 2026
@amp-rh

amp-rh commented Aug 13, 2026

Copy link
Copy Markdown
Contributor Author

/cc @cspi-qe-ocp-lp

@amp-rh
amp-rh force-pushed the interop-9415-remove-non-interop-steps branch from d7f6f9e to 3aea51b Compare August 13, 2026 14:14
@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amp-rh: pj-rehearse could not automatically process this event because the request waited in queue for longer than 5 minutes. Use /pj-rehearse to trigger rehearsals manually.

@amp-rh

amp-rh commented Aug 13, 2026

Copy link
Copy Markdown
Contributor Author

Note: This PR is also included in combined PR #83405, which bundles all 8 OPP Q3 pipeline improvements into a single review target. Either this PR or #83405 can be merged (not both).

@amp-rh
amp-rh force-pushed the interop-9415-remove-non-interop-steps branch from 3aea51b to 4f83222 Compare August 17, 2026 13:26
@coderabbitai

coderabbitai Bot commented Aug 17, 2026

Copy link
Copy Markdown
Contributor

Note

GitHub couldn't provide a complete incremental comparison for this pull request, so CodeRabbit is performing a full review instead. This review may take a little longer.

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amp-rh, pj-rehearse: unable to determine affected jobs. This could be due to a branch that needs to be rebased. ERROR:

couldn't prepare candidate: couldn't checkout base SHA 85a58a58288ea0d97ee95e9d29dc06b1c36a121c: error checking out "85a58a58288ea0d97ee95e9d29dc06b1c36a121c": exit status 128 fatal: unable to read tree (85a58a58288ea0d97ee95e9d29dc06b1c36a121c)

Interacting with pj-rehearse

Comment: /pj-rehearse to run up to 5 rehearsals
Comment: /pj-rehearse skip to opt-out of rehearsals
Comment: /pj-rehearse {test-name}, with each test separated by a space, to run one or more specific rehearsals
Comment: /pj-rehearse more to run up to 10 rehearsals
Comment: /pj-rehearse max to run up to 25 rehearsals
Comment: /pj-rehearse auto-ack to run up to 5 rehearsals, and add the rehearsals-ack label on success
Comment: /pj-rehearse list to get an up-to-date list of affected jobs
Comment: /pj-rehearse abort to abort all active rehearsals
Comment: /pj-rehearse network-access-allowed to allow rehearsals of tests that have the restrict_network_access field set to false. This must be executed by an openshift org member who is not the PR author

Once you are satisfied with the results of the rehearsals, comment: /pj-rehearse ack to unblock merge. When the rehearsals-ack label is present on your PR, merge will no longer be blocked by rehearsals.
If you would like the rehearsals-ack label removed, comment: /pj-rehearse reject to re-block merging.

@openshift-ci-robot

openshift-ci-robot commented Aug 17, 2026

Copy link
Copy Markdown
Contributor

@amp-rh: This pull request references INTEROP-9415 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 task to target the "5.1.0" version, but no target version was set.

Details

In response to this:

TL;DR

Pure deletion PR: removes 3 non-interop test steps and their orphaned dependencies from all 6 OPP interop jobs. No new code, no behavior changes to remaining steps. Each removed step is already validated by its product's own CI.

What changed

Steps removed from test: sections:

Step Removed From Why it's not interop
acm-tests-grc 3 AWS jobs Pure ACM GRC policy testing; covered by stolostron CI
acm-tests-alc 3 AWS jobs Pure ACM UI lifecycle testing; covered by stolostron CI
openshift-extended-test 3 AWS + 3 vSphere jobs Pure OCP Cluster_Observability; covered by OCP CI

Orphaned config also removed:

Type Items Why orphaned
base_images acmqe-grc-test, console-e2e, tests-private Only consumed by removed steps (from: field in step refs)
env vars TEST_IMPORTANCE, TEST_SCENARIOS Only consumed by openshift-extended-test

Review guide

All 3 files have identical removals (symmetric across OCP versions). Reviewing one file covers the full change. Start with:

Core file (review this, the other two are identical):

  • ci-operator/config/stolostron/policy-collection/stolostron-policy-collection-main__ocp4.22.yaml (-20 lines)

Confirm-identical files:

  • stolostron-policy-collection-main__ocp5.0.yaml (-20 lines)
  • stolostron-policy-collection-main__ocp5.1.yaml (-20 lines)

What stays

All interop-relevant steps remain: acm-policies-openshift-plus, acm-tests-clc-create, acm-opp-app, interop-tests-ocs-tests, quay-tests-quay-interop-test, acm-tests-observability, and the install/health-check chains.

Risk areas

  • Low risk. This is purely subtractive; no logic changes, no new steps.
  • IGNORE_SECONDARY_POLICIES env var is NOT removed; it's consumed by acm-policies-openshift-plus (not by any removed step).
  • clc-ui-e2e base image is NOT removed; it's consumed by acm-tests-clc-create.
  • No make update changes needed (step refs resolved at runtime by ci-operator).

Testing

  • Prow rehearsals ran for all 3 config variants (AWS + vSphere per version).
  • Verified remaining steps are unchanged by diffing the test: sections before/after.
  • Confirmed removed base_images have no other consumers in these configs.

Jira

INTEROP-9415 (Remove non-interop test steps from OPP CI configs)
Parent: INTEROP-9323 (Achieve 90%+ stability for OPP interop-only test suites)

Summary by CodeRabbit

  • Updated OCP 4.22, 5.0, and 5.1 interop CI configurations for the stolostron/policy-collection repository.
  • Removed the non-interop acm-tests-grc, acm-tests-alc, and openshift-extended-test steps from AWS and vSphere interop jobs.
  • Removed the unused base images and TEST_IMPORTANCE and TEST_SCENARIOS environment variables.
  • Preserved the remaining interop test steps.

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.

@amp-rh

amp-rh commented Aug 17, 2026

Copy link
Copy Markdown
Contributor Author

Blocker: GitHub API outage (2026-08-17)

ci/prow/check-gh-automation failing on all openshift/release PRs due to GitHub returning HTTP 503 to Prow permission checks. See https://www.githubstatus.com/. Unrelated to PR changes; will pass on /retest once GitHub recovers.

@amp-rh

amp-rh commented Aug 17, 2026

Copy link
Copy Markdown
Contributor Author

/retest

Remove acm-tests-grc, acm-tests-alc, and openshift-extended-test
from OPP interop job configurations across OCP 4.22, 5.0, and 5.1.

These single-product test steps don't meet the interop definition
and are already validated by each product's own CI:
- acm-tests-grc: pure ACM GRC policy testing (stolostron CI)
- acm-tests-alc: pure ACM UI lifecycle testing (stolostron CI)
- openshift-extended-test: pure OCP Cluster_Observability (OCP CI)

Also removes orphaned base_images (acmqe-grc-test, console-e2e,
tests-private) and env vars (TEST_IMPORTANCE, TEST_SCENARIOS) that
only served the removed steps.

INTEROP-9415
@amp-rh
amp-rh force-pushed the interop-9415-remove-non-interop-steps branch from 4f83222 to b1fdc90 Compare August 17, 2026 20:34
@coderabbitai

coderabbitai Bot commented Aug 17, 2026

Copy link
Copy Markdown
Contributor

Note

GitHub couldn't provide a complete incremental comparison for this pull request, so CodeRabbit is performing a full review instead. This review may take a little longer.

@openshift-merge-bot openshift-merge-bot Bot removed the rehearsals-ack Signifies that rehearsal jobs have been acknowledged label Aug 17, 2026
@openshift-merge-bot

Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@amp-rh: the pj-rehearse plugin accommodates running rehearsal tests for the changes in this PR. Expand 'Interacting with pj-rehearse' for usage details. The following rehearsable tests have been affected by this change:

Test name Repo Type Reason
pull-ci-stolostron-policy-collection-main-ocp4.22-images stolostron/policy-collection presubmit Ci-operator config changed
pull-ci-stolostron-policy-collection-main-ocp5.1-images stolostron/policy-collection presubmit Ci-operator config changed
pull-ci-stolostron-policy-collection-main-ocp5.0-images stolostron/policy-collection presubmit Ci-operator config changed
periodic-ci-stolostron-policy-collection-main-ocp5.1-interop-opp-aws N/A periodic Ci-operator config changed
periodic-ci-stolostron-policy-collection-main-ocp5.0-upgrade-interop-opp-upgrade-aws N/A periodic Ci-operator config changed
periodic-ci-stolostron-policy-collection-main-ocp4.22-upgrade-interop-opp-upgrade-aws N/A periodic Ci-operator config changed
periodic-ci-stolostron-policy-collection-main-ocp5.0-interop-opp-vsphere N/A periodic Ci-operator config changed
periodic-ci-stolostron-policy-collection-main-ocp4.22-interop-opp-vsphere N/A periodic Ci-operator config changed
periodic-ci-stolostron-policy-collection-main-ocp5.1-interop-opp-vsphere N/A periodic Ci-operator config changed
periodic-ci-stolostron-policy-collection-main-ocp5.1-upgrade-interop-opp-upgrade-aws N/A periodic Ci-operator config changed
periodic-ci-stolostron-policy-collection-main-ocp5.0-interop-opp-aws N/A periodic Ci-operator config changed
periodic-ci-stolostron-policy-collection-main-ocp4.22-interop-opp-aws N/A periodic Ci-operator config changed
Interacting with pj-rehearse

Comment: /pj-rehearse to run up to 5 rehearsals
Comment: /pj-rehearse skip to opt-out of rehearsals
Comment: /pj-rehearse {test-name}, with each test separated by a space, to run one or more specific rehearsals
Comment: /pj-rehearse more to run up to 10 rehearsals
Comment: /pj-rehearse max to run up to 25 rehearsals
Comment: /pj-rehearse auto-ack to run up to 5 rehearsals, and add the rehearsals-ack label on success
Comment: /pj-rehearse list to get an up-to-date list of affected jobs
Comment: /pj-rehearse abort to abort all active rehearsals
Comment: /pj-rehearse network-access-allowed to allow rehearsals of tests that have the restrict_network_access field set to false. This must be executed by an openshift org member who is not the PR author

Once you are satisfied with the results of the rehearsals, comment: /pj-rehearse ack to unblock merge. When the rehearsals-ack label is present on your PR, merge will no longer be blocked by rehearsals.
If you would like the rehearsals-ack label removed, comment: /pj-rehearse reject to re-block merging.

@openshift-ci

openshift-ci Bot commented Aug 17, 2026

Copy link
Copy Markdown
Contributor

@amp-rh: all tests passed!

Full PR test history. Your PR dashboard.

Details

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 kubernetes-sigs/prow repository. I understand the commands that are listed here.

@amp-rh

amp-rh commented Aug 18, 2026

Copy link
Copy Markdown
Contributor Author

/pj-rehearse ack

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amp-rh: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@openshift-merge-bot openshift-merge-bot Bot added the rehearsals-ack Signifies that rehearsal jobs have been acknowledged label Aug 18, 2026
@amp-rh

amp-rh commented Aug 18, 2026

Copy link
Copy Markdown
Contributor Author

Friendly ping for review. This PR removes non-interop test steps (acm-tests-grc, acm-tests-alc, openshift-extended-test) from OPP CI configs per the interop-only realignment (INTEROP-9323). Looking for /lgtm + /approve from a cspi-qe-ocp-lp team member. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. rehearsals-ack Signifies that rehearsal jobs have been acknowledged

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants