Skip to content

OADP: migrate CI from deprecated OO_INDEX to OO_BUNDLE (FBC)#79152

Open
kaovilai wants to merge 5 commits into
openshift:mainfrom
kaovilai:oadp-migrate-oo-index-to-oo-bundle
Open

OADP: migrate CI from deprecated OO_INDEX to OO_BUNDLE (FBC)#79152
kaovilai wants to merge 5 commits into
openshift:mainfrom
kaovilai:oadp-migrate-oo-index-to-oo-bundle

Conversation

@kaovilai
Copy link
Copy Markdown
Member

@kaovilai kaovilai commented May 11, 2026

Summary

Migrate all oadp-operator variant CI configs from the deprecated index image path (OO_INDEX: ci-index + optional-operators-ci-aws) to the recommended operator-sdk bundle workflow (OO_BUNDLE + optional-operators-ci-operator-sdk-aws). Also removes EOL oadp-1.0 variant configs entirely.

Changes per config:

  • operator.bundles: add as: oadp-operator-bundle + skip_building_index: true
  • dependencies: OO_INDEX: ci-indexOO_BUNDLE: oadp-operator-bundle
  • workflow: optional-operators-ci-awsoptional-operators-ci-operator-sdk-aws
  • env: replace OO_CHANNEL/OO_PACKAGE/OO_TARGET_NAMESPACES with OO_INSTALL_MODE: OwnNamespace

Migrated configs (13 files):

  • oadp-1.3 (4.12, 4.13, 4.14, 4.15)
  • oadp-1.4 (4.18)
  • oadp-1.5 (4.19, 4.20)
  • oadp-1.6 (4.18, 4.22, 5.0)
  • oadp-dev (4.22, 4.23, 5.0)

Deleted configs (2 files):

  • oadp-1.0 (4.12, 4.14) — EOL, no longer needed

Why:

Since OCP 4.11+, index images are file-based catalogs (FBC) which are incompatible with ci-operator's legacy index image building. Building index images is deprecated and will be removed from ci-operator. The recommended replacement is operator-sdk run bundle via the optional-operators-ci-operator-sdk-aws workflow, which works with both legacy and FBC index formats.

See also: Moving to File-Based Catalog

Unblocks: openshift/oadp-operator#2160

Note

Responses generated with Claude

Migrate all 15 oadp-operator variant CI configs from the deprecated
index image path to the recommended operator-sdk bundle workflow.

Changes per config:
- operator.bundles: add `as: oadp-operator-bundle` + `skip_building_index: true`
- dependencies: OO_INDEX: ci-index → OO_BUNDLE: oadp-operator-bundle
- workflow: optional-operators-ci-aws → optional-operators-ci-operator-sdk-aws
- env: replace OO_CHANNEL/OO_PACKAGE/OO_TARGET_NAMESPACES with OO_INSTALL_MODE: OwnNamespace

The deprecated index image building will be removed from ci-operator soon.
See: https://docs.ci.openshift.org/how-tos/testing-operator-sdk-operators/#building-an-index-deprecated

Unblocks: openshift/oadp-operator#2160

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
Copilot AI review requested due to automatic review settings May 11, 2026 21:27
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 11, 2026

Important

Review skipped

Review was skipped due to path filters

⛔ Files ignored due to path filters (7)
  • ci-operator/jobs/openshift/oadp-operator/openshift-oadp-operator-oadp-1.0-periodics.yaml is excluded by !ci-operator/jobs/**
  • ci-operator/jobs/openshift/oadp-operator/openshift-oadp-operator-oadp-1.0-presubmits.yaml is excluded by !ci-operator/jobs/**
  • ci-operator/jobs/openshift/oadp-operator/openshift-oadp-operator-oadp-1.3-presubmits.yaml is excluded by !ci-operator/jobs/**
  • ci-operator/jobs/openshift/oadp-operator/openshift-oadp-operator-oadp-1.4-presubmits.yaml is excluded by !ci-operator/jobs/**
  • ci-operator/jobs/openshift/oadp-operator/openshift-oadp-operator-oadp-1.5-presubmits.yaml is excluded by !ci-operator/jobs/**
  • ci-operator/jobs/openshift/oadp-operator/openshift-oadp-operator-oadp-1.6-presubmits.yaml is excluded by !ci-operator/jobs/**
  • ci-operator/jobs/openshift/oadp-operator/openshift-oadp-operator-oadp-dev-presubmits.yaml is excluded by !ci-operator/jobs/**

CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including **/dist/** will override the default block on the dist directory, by removing the pattern from both the lists.

⚙️ Run configuration

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

Review profile: CHILL

Plan: Enterprise

Run ID: e6b21aa4-1a4b-4f2c-93cc-7c787e67b7f6

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Walkthrough

Multiple OADP CI YAMLs were updated to build and publish a named bundle (oadp-operator-bundle with skip_building_index: true), switch e2e jobs to operator-sdk workflows, and change test install wiring to use OO_BUNDLE, OO_INSTALL_MODE: OwnNamespace, and OO_INSTALL_NAMESPACE: openshift-adp instead of index/channel/package variables.

Changes

Cohort / File(s) Summary
Bundle build additions
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.0__4.12.yaml, ...-1.3__4.12.yaml, ...-1.3__4.13.yaml, ...-1.3__4.14.yaml, ...-1.3__4.15.yaml, ...-1.4__4.18.yaml, ...-1.5__4.19.yaml, ...-1.5__4.20.yaml, ...-1.6__4.18.yaml, ...-1.6__4.22.yaml, ...-1.6__5.0.yaml, ...-dev__4.22.yaml, ...-dev__4.23.yaml, ...-dev__5.0.yaml
Introduce a named bundle artifact oadp-operator-bundle (alias/as) built from build/Dockerfile.bundle and set skip_building_index: true where present.
Workflow selector changes
ci-operator/config/openshift/oadp-operator/*__*.yaml
E2E periodic and non-periodic jobs switched from workflow: optional-operators-ci-aws to workflow: optional-operators-ci-operator-sdk-aws (applies to AWS, KubeVirt, HCP, CLI periodic variants as present).
Test install env/deps updates
ci-operator/config/openshift/oadp-operator/*__*.yaml
Replaced index/channel/package/target-namespace inputs (OO_INDEX, OO_CHANNEL, OO_PACKAGE, OO_TARGET_NAMESPACES) with bundle-based inputs: OO_BUNDLE: oadp-operator-bundle, OO_INSTALL_MODE: OwnNamespace, OO_INSTALL_NAMESPACE: openshift-adp.
Per-version/job-specific adjustments
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.*__*.yaml, ...-dev__*.yaml
Per-OCP-version and dev variant files align bundle build, workflow, and env changes; some files also add or reshape periodic HCP/KubeVirt/CLI jobs to match operator-sdk pattern.

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~45 minutes

🚥 Pre-merge checks | ✅ 12
✅ Passed checks (12 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the main change: migrating OADP CI configurations from deprecated OO_INDEX to OO_BUNDLE, with FBC indicating file-based catalogs support.
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 PR contains only YAML CI configuration changes affecting ci-operator configs. No Ginkgo test definitions or test names are modified. Custom check for stable test names is not applicable.
Test Structure And Quality ✅ Passed This PR contains only YAML CI operator configuration changes for OADP operators, not Ginkgo test code. The custom check requesting review of Ginkgo test structure and quality is not applicable.
Microshift Test Compatibility ✅ Passed No new Ginkgo e2e tests added. All changes are to ci-operator YAML config files only (job setup, workflows, env vars). MicroShift test compatibility check is not applicable.
Single Node Openshift (Sno) Test Compatibility ✅ Passed This PR only modifies YAML CI configuration files for oadp-operator. No new Ginkgo e2e tests are added. SNO compatibility checks apply only to new test code, which is absent.
Topology-Aware Scheduling Compatibility ✅ Passed This PR modifies only CI-operator configuration files, not deployment manifests or operator code. No scheduling constraints are introduced. Check not applicable.
Ote Binary Stdout Contract ✅ Passed Custom check not applicable. PR contains only YAML CI configuration changes with no Go source code, test binaries, or process-level code that could write to stdout.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed PR contains only CI config YAML changes, no new Ginkgo e2e tests. Check designed for test code additions, not CI infrastructure modifications.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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

@openshift-ci openshift-ci Bot requested review from mpryc and mrnold May 11, 2026 21:28
@openshift-ci openshift-ci Bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label May 11, 2026
@kaovilai
Copy link
Copy Markdown
Member Author

/pj-rehearse auto-ack

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@kaovilai
Copy link
Copy Markdown
Member Author

Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Migrates the OADP operator variant ci-operator configs from the deprecated index-image-based optional-operators workflow (OO_INDEX / optional-operators-ci-aws) to the operator-sdk bundle workflow (OO_BUNDLE / optional-operators-ci-operator-sdk-aws) to avoid upcoming ci-operator index build removal.

Changes:

  • Define a named operator bundle (as: oadp-operator-bundle) and set skip_building_index: true in each variant config.
  • Switch test dependencies from OO_INDEX: ci-index to OO_BUNDLE: oadp-operator-bundle.
  • Update workflows to optional-operators-ci-operator-sdk-aws and replace channel/package/target namespace env with OO_INSTALL_MODE: OwnNamespace.

Reviewed changes

Copilot reviewed 15 out of 15 changed files in this pull request and generated no comments.

Show a summary per file
File Description
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-dev__5.0.yaml Switch OADP dev 5.0 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-dev__4.23.yaml Switch OADP dev 4.23 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-dev__4.22.yaml Switch OADP dev 4.22 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.6__5.0.yaml Switch OADP 1.6 5.0 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.6__4.22.yaml Switch OADP 1.6 4.22 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.6__4.18.yaml Switch OADP 1.6 4.18 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.5__4.20.yaml Switch OADP 1.5 4.20 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.5__4.19.yaml Switch OADP 1.5 4.19 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.4__4.18.yaml Switch OADP 1.4 4.18 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.3__4.15.yaml Switch OADP 1.3 4.15 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.3__4.14.yaml Switch OADP 1.3 4.14 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.3__4.13.yaml Switch OADP 1.3 4.13 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.3__4.12.yaml Switch OADP 1.3 4.12 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.0__4.14.yaml Switch OADP 1.0 4.14 CI to operator-sdk bundle workflow and bundle dependency.
ci-operator/config/openshift/oadp-operator/openshift-oadp-operator-oadp-1.0__4.12.yaml Switch OADP 1.0 4.12 CI to operator-sdk bundle workflow and bundle dependency.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@kaovilai kaovilai changed the title feat: migrate OADP CI from deprecated OO_INDEX to OO_BUNDLE OADP: migrate CI from deprecated OO_INDEX to OO_BUNDLE (FBC) May 11, 2026
@weshayutin
Copy link
Copy Markdown
Contributor

@kaovilai can you just delete any oadp-1.0.x files, we don't need to update them. We only need OADP-1.3+

@kaovilai
Copy link
Copy Markdown
Member Author

its just for sanity.. :/

OADP 1.0 is EOL — no need to maintain these CI configs.
Only OADP 1.3+ configs are needed going forward.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
@weshayutin
Copy link
Copy Markdown
Contributor

nuke a few more old jobs I think iiuc

prowgen doesn't prune job files when source configs are deleted.
Manual cleanup of generated jobs for removed oadp-1.0 variant configs.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
@kaovilai
Copy link
Copy Markdown
Member Author

/pj-rehearse auto-ack

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label May 12, 2026
@kaovilai
Copy link
Copy Markdown
Member Author

/retest

@kaovilai
Copy link
Copy Markdown
Member Author

/pj-rehearse auto-ack

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@kaovilai
Copy link
Copy Markdown
Member Author

/retest

Latest prowgen renames ci-index validation jobs to
ci-bundle-oadp-operator-bundle when skip_building_index is set.
Also restores oadp-1.0 job files which are still needed for the
default (non-variant) oadp-1.0 config's unit test jobs.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
@openshift-ci openshift-ci Bot removed the lgtm Indicates that a PR is ready to be merged. label May 12, 2026
Run sanitize-prow-jobs to add missing cluster: fields
(build01, build11) to newly generated ci-bundle-oadp-operator-bundle
presubmit jobs.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
@openshift-merge-bot
Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@kaovilai: 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-openshift-oadp-operator-oadp-1.3-4.12-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-1.3-4.13-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-1.3-4.14-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-1.3-4.15-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-1.4-4.18-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-1.5-4.19-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-1.5-4.20-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-1.6-4.18-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-1.6-4.22-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-1.6-5.0-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-dev-4.22-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-dev-4.23-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-dev-5.0-ci-bundle-oadp-operator-bundle openshift/oadp-operator presubmit Presubmit changed
pull-ci-openshift-oadp-operator-oadp-dev-4.22-e2e-test-aws openshift/oadp-operator presubmit Ci-operator config changed
pull-ci-openshift-oadp-operator-oadp-dev-4.22-e2e-test-cli-aws openshift/oadp-operator presubmit Ci-operator config changed
pull-ci-openshift-oadp-operator-oadp-dev-4.22-images openshift/oadp-operator presubmit Ci-operator config changed
pull-ci-openshift-oadp-operator-oadp-1.3-4.12-e2e-test-aws openshift/oadp-operator presubmit Ci-operator config changed
pull-ci-openshift-oadp-operator-oadp-1.3-4.12-images openshift/oadp-operator presubmit Ci-operator config changed
pull-ci-openshift-oadp-operator-oadp-dev-5.0-e2e-test-aws openshift/oadp-operator presubmit Ci-operator config changed
pull-ci-openshift-oadp-operator-oadp-dev-5.0-e2e-test-cli-aws openshift/oadp-operator presubmit Ci-operator config changed
pull-ci-openshift-oadp-operator-oadp-dev-5.0-images openshift/oadp-operator presubmit Ci-operator config changed
pull-ci-openshift-oadp-operator-oadp-1.3-4.13-e2e-test-aws openshift/oadp-operator presubmit Ci-operator config changed
pull-ci-openshift-oadp-operator-oadp-1.3-4.13-images openshift/oadp-operator presubmit Ci-operator config changed
pull-ci-openshift-oadp-operator-oadp-dev-4.23-e2e-test-aws openshift/oadp-operator presubmit Ci-operator config changed
pull-ci-openshift-oadp-operator-oadp-dev-4.23-images openshift/oadp-operator presubmit Ci-operator config changed

A total of 78 jobs have been affected by this change. The above listing is non-exhaustive and limited to 25 jobs.

A full list of affected jobs can be found here

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.

@kaovilai
Copy link
Copy Markdown
Member Author

/pj-rehearse auto-ack

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@kaovilai
Copy link
Copy Markdown
Member Author

/pj-rehearse pull-ci-openshift-oadp-operator-oadp-1.6-4.22-e2e-test-aws

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@kaovilai
Copy link
Copy Markdown
Member Author

/pj-rehearse pull-ci-openshift-oadp-operator-oadp-1.3-4.12-e2e-test-aws

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label May 12, 2026
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 12, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: kaovilai, shubham-pampattiwar, weshayutin

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

The pull request process is described 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

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 12, 2026

@kaovilai: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/rehearse/openshift/oadp-operator/oadp-1.6/4.22-ci-index c2dd560 link unknown /pj-rehearse pull-ci-openshift-oadp-operator-oadp-1.6-4.22-ci-index
ci/rehearse/openshift/oadp-operator/oadp-1.3/4.12-ci-index c2dd560 link unknown /pj-rehearse pull-ci-openshift-oadp-operator-oadp-1.3-4.12-ci-index
ci/rehearse/openshift/oadp-operator/oadp-dev/5.0-ci-index c2dd560 link unknown /pj-rehearse pull-ci-openshift-oadp-operator-oadp-dev-5.0-ci-index
ci/rehearse/openshift/oadp-operator/oadp-1.3/4.12-e2e-test-aws 50b6161 link unknown /pj-rehearse pull-ci-openshift-oadp-operator-oadp-1.3-4.12-e2e-test-aws
ci/rehearse/openshift/oadp-operator/oadp-dev/4.22-ci-index 36aa091 link unknown /pj-rehearse pull-ci-openshift-oadp-operator-oadp-dev-4.22-ci-index
ci/rehearse/openshift/oadp-operator/oadp-1.0/4.12-ci-index 36aa091 link unknown /pj-rehearse pull-ci-openshift-oadp-operator-oadp-1.0-4.12-ci-index
ci/rehearse/openshift/oadp-operator/oadp-1.4/4.18-ci-index c2dd560 link unknown /pj-rehearse pull-ci-openshift-oadp-operator-oadp-1.4-4.18-ci-index
ci/rehearse/openshift/oadp-operator/oadp-dev/5.0-e2e-test-cli-aws 50b6161 link unknown /pj-rehearse pull-ci-openshift-oadp-operator-oadp-dev-5.0-e2e-test-cli-aws
ci/rehearse/periodic-ci-openshift-oadp-operator-oadp-1.3-4.12-e2e-test-aws-periodic 50b6161 link unknown /pj-rehearse periodic-ci-openshift-oadp-operator-oadp-1.3-4.12-e2e-test-aws-periodic
ci/rehearse/openshift/oadp-operator/oadp-1.6/4.22-e2e-test-aws 50b6161 link unknown /pj-rehearse pull-ci-openshift-oadp-operator-oadp-1.6-4.22-e2e-test-aws
ci/rehearse/openshift/oadp-operator/oadp-dev/5.0-e2e-test-aws 50b6161 link unknown /pj-rehearse pull-ci-openshift-oadp-operator-oadp-dev-5.0-e2e-test-aws

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.

@weshayutin
Copy link
Copy Markdown
Contributor

/pj-rehearse pull-ci-openshift-oadp-operator-oadp-1.6-4.22-e2e-test-aws

@openshift-merge-bot
Copy link
Copy Markdown
Contributor

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

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

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants