Skip to content

OCPBUGS-83446: Fix Cypress test timeouts by using correct timeout option#16280

Merged
openshift-merge-bot[bot] merged 2 commits intoopenshift:mainfrom
rhamilto:OCPBUGS-83446
Apr 15, 2026
Merged

OCPBUGS-83446: Fix Cypress test timeouts by using correct timeout option#16280
openshift-merge-bot[bot] merged 2 commits intoopenshift:mainfrom
rhamilto:OCPBUGS-83446

Conversation

@rhamilto
Copy link
Copy Markdown
Member

@rhamilto rhamilto commented Apr 14, 2026

Includes changes from #16277 so we get Cypress Cloud Recording.

Summary

Fix Cypress integration tests timing out in CI after 15 seconds instead of the intended 300 seconds.

Problem

Multiple Cypress integration tests were failing in CI with 15-second timeouts when they should be using a 300-second timeout. The tests defined WAIT_OPTIONS = { requestTimeout: 300000 } but this option was not being honored by cy.wait().

Root Cause

The requestTimeout option passed to cy.wait() controls how long to wait for the request to be sent, not how long to wait for the response to arrive or for the overall wait command to complete. Tests were timing out at the global default requestTimeout of 15 seconds (defined in cypress-common-config.js:115) regardless of the WAIT_OPTIONS being passed.

Solution

Changed requestTimeout to timeout in all affected test files. The timeout option is the correct and most reliable option for controlling how long cy.wait() will wait for route aliases to resolve.

Changes

-const WAIT_OPTIONS = { requestTimeout: 300000 };
+const WAIT_OPTIONS = { timeout: 300000 };

Affected Files (8 total)

  • packages/integration-tests/tests/app/admission-webhook-warning-notifications.cy.ts
  • packages/integration-tests/tests/app/poll-console-updates.cy.ts
  • packages/integration-tests/tests/cluster-settings/channel-modal.cy.ts
  • packages/integration-tests/tests/cluster-settings/update-in-progress.cy.ts
  • packages/integration-tests/tests/cluster-settings/update-modal.cy.ts
  • packages/integration-tests/tests/cluster-settings/updates-graph.cy.ts
  • packages/integration-tests/tests/cluster-settings/upgradeable-false.cy.ts
  • packages/integration-tests/tests/cluster-settings/worker-mcp-paused.cy.ts

Testing

  • Verified all 8 files now use the correct timeout option
  • No other instances of requestTimeout in test wait options remain

References

🤖 Generated with Claude Code

Summary by CodeRabbit

  • Chores
    • Enhanced test infrastructure to optionally enable test recording and monitoring
    • Updated test configuration parameters across integration tests

rhamilto and others added 2 commits April 14, 2026 11:09
Multiple Cypress integration tests were timing out in CI after 15 seconds
despite attempting to set a 300-second timeout. The tests were using
`requestTimeout` in WAIT_OPTIONS, but this option controls how long to wait
for the request to be sent, not how long to wait for the response or for the
cy.wait() command to complete.

Changed `requestTimeout` to `timeout` in all affected test files. The `timeout`
option is the correct option for controlling how long cy.wait() will wait for
route aliases to resolve.

Affected files:
- packages/integration-tests/tests/app/admission-webhook-warning-notifications.cy.ts
- packages/integration-tests/tests/app/poll-console-updates.cy.ts
- packages/integration-tests/tests/cluster-settings/channel-modal.cy.ts
- packages/integration-tests/tests/cluster-settings/update-in-progress.cy.ts
- packages/integration-tests/tests/cluster-settings/update-modal.cy.ts
- packages/integration-tests/tests/cluster-settings/updates-graph.cy.ts
- packages/integration-tests/tests/cluster-settings/upgradeable-false.cy.ts
- packages/integration-tests/tests/cluster-settings/worker-mcp-paused.cy.ts

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
@openshift-ci-robot openshift-ci-robot added jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. labels Apr 14, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@rhamilto: This pull request references Jira Issue OCPBUGS-83446, which is invalid:

  • expected the bug to target either version "5.0." or "openshift-5.0.", but it targets "4.23.0" instead

Comment /jira refresh to re-evaluate validity if changes to the Jira bug are made, or edit the title of this pull request to link to a different bug.

The bug has been updated to refer to the pull request using the external bug tracker.

Details

In response to this:

Summary

Fix Cypress integration tests timing out in CI after 15 seconds instead of the intended 300 seconds.

Problem

Multiple Cypress integration tests were failing in CI with 15-second timeouts when they should be using a 300-second timeout. The tests defined WAIT_OPTIONS = { requestTimeout: 300000 } but this option was not being honored by cy.wait().

Root Cause

The requestTimeout option passed to cy.wait() controls how long to wait for the request to be sent, not how long to wait for the response to arrive or for the overall wait command to complete. Tests were timing out at the global default requestTimeout of 15 seconds (defined in cypress-common-config.js:115) regardless of the WAIT_OPTIONS being passed.

Solution

Changed requestTimeout to timeout in all affected test files. The timeout option is the correct and most reliable option for controlling how long cy.wait() will wait for route aliases to resolve.

Changes

-const WAIT_OPTIONS = { requestTimeout: 300000 };
+const WAIT_OPTIONS = { timeout: 300000 };

Affected Files (8 total)

  • packages/integration-tests/tests/app/admission-webhook-warning-notifications.cy.ts
  • packages/integration-tests/tests/app/poll-console-updates.cy.ts
  • packages/integration-tests/tests/cluster-settings/channel-modal.cy.ts
  • packages/integration-tests/tests/cluster-settings/update-in-progress.cy.ts
  • packages/integration-tests/tests/cluster-settings/update-modal.cy.ts
  • packages/integration-tests/tests/cluster-settings/updates-graph.cy.ts
  • packages/integration-tests/tests/cluster-settings/upgradeable-false.cy.ts
  • packages/integration-tests/tests/cluster-settings/worker-mcp-paused.cy.ts

Testing

  • Verified all 8 files now use the correct timeout option
  • No other instances of requestTimeout in test wait options remain

References

🤖 Generated with Claude Code

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 requested review from sanketpathak and sg00dwin April 14, 2026 18:31
@openshift-ci openshift-ci bot added component/dev-console Related to dev-console component/helm Related to helm-plugin approved Indicates a PR has been approved by an approver from all required OWNERS files. component/knative Related to knative-plugin component/olm Related to OLM component/topology Related to topology kind/cypress Related to Cypress e2e integration testing labels Apr 14, 2026
@rhamilto
Copy link
Copy Markdown
Member Author

/assign @logonoff

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Apr 14, 2026

📝 Walkthrough

Walkthrough

This pull request updates Cypress integration test configurations across multiple frontend packages. Changes include: (1) adding conditional Cypress Dashboard recording via --record flag when CYPRESS_RECORD_KEY environment variable is set in multiple integration test package.json files; (2) adding projectId: 'yfeyv6' to the common Cypress configuration to enable dashboard connectivity; and (3) updating deprecated Cypress wait configuration option keys from requestTimeout to timeout in fourteen test files to align with current Cypress API conventions.

🚥 Pre-merge checks | ✅ 10
✅ Passed checks (10 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately identifies the main fix: correcting the Cypress timeout option from requestTimeout to timeout across integration tests.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Stable And Deterministic Test Names ✅ Passed PR modifies only Cypress wait timeout configuration in test bodies, not test title definitions. All test titles remain stable, deterministic, and descriptive without dynamic identifiers.
Test Structure And Quality ✅ Passed Custom check requests Ginkgo test code review, but PR contains only Cypress integration test modifications. Check is out of scope.
Microshift Test Compatibility ✅ Passed PR modifies only Cypress integration tests (.cy.ts files) in frontend packages, not Ginkgo e2e tests. No Go test files with Ginkgo patterns detected.
Single Node Openshift (Sno) Test Compatibility ✅ Passed PR contains only Cypress integration test modifications (.cy.ts files), not new Ginkgo e2e tests. SNO compatibility check applies only to new Ginkgo e2e tests.
Topology-Aware Scheduling Compatibility ✅ Passed PR modifies only test infrastructure (Cypress scripts and configurations) without introducing any K8s scheduling constraints, deployment manifests, or operator code.
Ote Binary Stdout Contract ✅ Passed PR modifies exclusively frontend Cypress E2E test infrastructure (package.json, cypress-common-config.js, .cy.ts files). OTE Binary Stdout Contract applies only to Go backend test code; no Go files modified.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed Custom check for IPv6 and disconnected network compatibility in Ginkgo e2e tests is inapplicable to this PR, which exclusively modifies Cypress integration tests (.cy.ts) and npm configurations.
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.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

🧹 Nitpick comments (1)
frontend/packages/shipwright-plugin/integration-tests/package.json (1)

11-11: Remove the trailing ; for cleaner, shell-agnostic script behavior.

Line [11] ends with --spec "features/e2e/shipwright-ci.feature";. It’s unnecessary and makes parsing slightly more shell-dependent; recommend removing it for consistency.

Proposed cleanup
-    "test-cypress-headless": "node --max-old-space-size=4096 ../../../node_modules/.bin/cypress run ${CYPRESS_RECORD_KEY:+--record} --env openshift=true --browser ${BRIDGE_E2E_BROWSER_NAME:-electron} --headless --spec \"features/e2e/shipwright-ci.feature\";",
+    "test-cypress-headless": "node --max-old-space-size=4096 ../../../node_modules/.bin/cypress run ${CYPRESS_RECORD_KEY:+--record} --env openshift=true --browser ${BRIDGE_E2E_BROWSER_NAME:-electron} --headless --spec \"features/e2e/shipwright-ci.feature\"",
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@frontend/packages/shipwright-plugin/integration-tests/package.json` at line
11, The package.json npm script "test-cypress-headless" ends with an unnecessary
trailing semicolon which can cause shell-parsing differences; edit the
"test-cypress-headless" script value to remove the final ";" character after
--spec "features/e2e/shipwright-ci.feature" so the command ends cleanly without
the semicolon, preserving the rest of the flags (node --max-old-space-size=4096
../../../node_modules/.bin/cypress run ${CYPRESS_RECORD_KEY:+--record} --env
openshift=true --browser ${BRIDGE_E2E_BROWSER_NAME:-electron} --headless --spec
"features/e2e/shipwright-ci.feature").
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@frontend/packages/shipwright-plugin/integration-tests/package.json`:
- Line 11: The package.json npm script "test-cypress-headless" ends with an
unnecessary trailing semicolon which can cause shell-parsing differences; edit
the "test-cypress-headless" script value to remove the final ";" character after
--spec "features/e2e/shipwright-ci.feature" so the command ends cleanly without
the semicolon, preserving the rest of the flags (node --max-old-space-size=4096
../../../node_modules/.bin/cypress run ${CYPRESS_RECORD_KEY:+--record} --env
openshift=true --browser ${BRIDGE_E2E_BROWSER_NAME:-electron} --headless --spec
"features/e2e/shipwright-ci.feature").

ℹ️ Review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Pro Plus

Run ID: c28edbc3-357f-464e-8136-c70e6438f8e0

📥 Commits

Reviewing files that changed from the base of the PR and between 52099b4 and 8d84f32.

📒 Files selected for processing (18)
  • frontend/packages/console-telemetry-plugin/integration-tests/package.json
  • frontend/packages/dev-console/integration-tests/package.json
  • frontend/packages/helm-plugin/integration-tests/package.json
  • frontend/packages/integration-tests/cypress-common-config.js
  • frontend/packages/integration-tests/package.json
  • frontend/packages/integration-tests/tests/app/admission-webhook-warning-notifications.cy.ts
  • frontend/packages/integration-tests/tests/app/poll-console-updates.cy.ts
  • frontend/packages/integration-tests/tests/cluster-settings/channel-modal.cy.ts
  • frontend/packages/integration-tests/tests/cluster-settings/update-in-progress.cy.ts
  • frontend/packages/integration-tests/tests/cluster-settings/update-modal.cy.ts
  • frontend/packages/integration-tests/tests/cluster-settings/updates-graph.cy.ts
  • frontend/packages/integration-tests/tests/cluster-settings/upgradeable-false.cy.ts
  • frontend/packages/integration-tests/tests/cluster-settings/worker-mcp-paused.cy.ts
  • frontend/packages/knative-plugin/integration-tests/package.json
  • frontend/packages/operator-lifecycle-manager/integration-tests/package.json
  • frontend/packages/shipwright-plugin/integration-tests/package.json
  • frontend/packages/topology/integration-tests/package.json
  • frontend/packages/webterminal-plugin/integration-tests/package.json
📜 Review details
🔇 Additional comments (17)
frontend/packages/integration-tests/cypress-common-config.js (1)

108-108: Shared config placement is correct.

Line 108 adds the project identifier in the common Cypress config, which is the right centralized location.

frontend/packages/integration-tests/tests/cluster-settings/update-modal.cy.ts (1)

11-11: Timeout option update looks good.

Line 11 keeps the 300s wait budget while using a single reusable options constant for all waits in this spec.

frontend/packages/integration-tests/tests/app/poll-console-updates.cy.ts (1)

42-42: Good stabilization change for long-running waits.

Line 42 correctly applies the extended wait setting through the shared WAIT_OPTIONS constant used across this suite.

frontend/packages/integration-tests/tests/cluster-settings/updates-graph.cy.ts (1)

6-6: This wait-options change is clean.

Line 6 standardizes the long wait configuration for intercepted cluster-version calls in this test.

frontend/packages/integration-tests/tests/cluster-settings/channel-modal.cy.ts (1)

11-11: Looks correct and consistent.

Line 11 updates the shared wait options without changing test flow, keeping the intended 300s tolerance.

frontend/packages/integration-tests/tests/cluster-settings/upgradeable-false.cy.ts (1)

6-6: Approved — same fix pattern applied correctly.

Line 6 preserves the long wait duration while aligning with the updated wait option shape used across related specs.

frontend/packages/integration-tests/tests/app/admission-webhook-warning-notifications.cy.ts (1)

10-10: Small but correct timeout-key update.

Line 10 keeps the same 5s value and cleanly updates the shared wait option object used by both tests.

frontend/packages/integration-tests/tests/cluster-settings/worker-mcp-paused.cy.ts (1)

6-6: LGTM for this spec update.

Line 6 applies the same timeout-options fix pattern used across the cluster-settings integration tests.

frontend/packages/topology/integration-tests/package.json (1)

11-11: Good conditional recording toggle in headless script.

Line 11 correctly gates --record on CYPRESS_RECORD_KEY while preserving existing execution flags.

frontend/packages/integration-tests/tests/cluster-settings/update-in-progress.cy.ts (1)

6-6: Correct wait option key for intended long wait behavior.

Line 6 switches to timeout, which is the right setting for command wait duration in this test flow.

frontend/packages/console-telemetry-plugin/integration-tests/package.json (1)

11-11: LGTM: recording enabled only when key is present.

Line 11 keeps the current command shape and adds a clean opt-in for Cypress recording.

frontend/packages/dev-console/integration-tests/package.json (1)

14-14: Nice update to keep recording opt-in without affecting post-processing flow.

Line 14 adds the conditional --record flag and preserves the posttest-cypress-headless chain.

frontend/packages/webterminal-plugin/integration-tests/package.json (1)

11-11: Consistent and correct script update.

Line 11 applies the same conditional recording behavior used across the other Cypress integration packages.

frontend/packages/integration-tests/package.json (1)

8-8: Good targeted change in the primary integration test runner script.

Line 8 cleanly introduces optional recording with no regression to existing browser/env behavior.

frontend/packages/operator-lifecycle-manager/integration-tests/package.json (1)

8-8: Looks good and consistent with the broader Cypress script updates.

Line 8 adds optional recording while preserving existing headless execution flags.

frontend/packages/knative-plugin/integration-tests/package.json (1)

11-11: Approved: opt-in recording added without altering test target configuration.

Line 11 keeps the same spec targeting and runtime flags while enabling conditional dashboard recording.

frontend/packages/helm-plugin/integration-tests/package.json (1)

11-11: Looks good — conditional Cypress recording is wired correctly.

Line [11] cleanly adds --record only when CYPRESS_RECORD_KEY is present, while preserving existing run options.

Copy link
Copy Markdown
Member

@logonoff logonoff left a comment

Choose a reason for hiding this comment

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

requestTimeout should also be a valid WaitOption and should be still respected by cy.wait.. Claude gave me a similar "root cause" but when I pushed back it said "you're absolutely right!"

However by setting just timeout, this means we also set both requestTimeout and responseTimeout which I guess is fine - if these tests pass after a few retests I'd consider this verified

/lgtm

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

openshift-ci bot commented Apr 14, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: logonoff, rhamilto

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

@rhamilto
Copy link
Copy Markdown
Member Author

/retest

2 similar comments
@rhamilto
Copy link
Copy Markdown
Member Author

/retest

@rhamilto
Copy link
Copy Markdown
Member Author

/retest

@rhamilto
Copy link
Copy Markdown
Member Author

/cherry-pick release-4.22

@openshift-cherrypick-robot
Copy link
Copy Markdown

@rhamilto: once the present PR merges, I will cherry-pick it on top of release-4.22 in a new PR and assign it to you.

Details

In response to this:

/cherry-pick release-4.22

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.

@rhamilto
Copy link
Copy Markdown
Member Author

/cherry-pick release-4.23
/jira refresh

@openshift-cherrypick-robot
Copy link
Copy Markdown

@rhamilto: once the present PR merges, I will cherry-pick it on top of release-4.23 in a new PR and assign it to you.

Details

In response to this:

/cherry-pick release-4.23
/jira refresh

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.

@openshift-ci-robot openshift-ci-robot added jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. and removed jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. labels Apr 15, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@rhamilto: This pull request references Jira Issue OCPBUGS-83446, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state ASSIGNED, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

/cherry-pick release-4.23
/jira refresh

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.

@rhamilto
Copy link
Copy Markdown
Member Author

/override ci/prow/e2e-gcp-console
/verified by @rhamilto

@openshift-ci-robot openshift-ci-robot added the verified Signifies that the PR passed pre-merge verification criteria label Apr 15, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@rhamilto: This PR has been marked as verified by @rhamilto.

Details

In response to this:

/override ci/prow/e2e-gcp-console
/verified by @rhamilto

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
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Apr 15, 2026

@rhamilto: Overrode contexts on behalf of rhamilto: ci/prow/e2e-gcp-console

Details

In response to this:

/override ci/prow/e2e-gcp-console
/verified by @rhamilto

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.

@rhamilto
Copy link
Copy Markdown
Member Author

/override ci/prow/e2e-gcp-console

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Apr 15, 2026

@rhamilto: Overrode contexts on behalf of rhamilto: ci/prow/e2e-gcp-console

Details

In response to this:

/override ci/prow/e2e-gcp-console

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.

@openshift-merge-bot openshift-merge-bot bot merged commit 0354897 into openshift:main Apr 15, 2026
8 checks passed
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

@rhamilto: Jira Issue Verification Checks: Jira Issue OCPBUGS-83446
✔️ This pull request was pre-merge verified.
✔️ All associated pull requests have merged.
✔️ All associated, merged pull requests were pre-merge verified.

Jira Issue OCPBUGS-83446 has been moved to the MODIFIED state and will move to the VERIFIED state when the change is available in an accepted nightly payload. 🕓

Details

In response to this:

Includes changes from #16277 so we get Cypress Cloud Recording.

Summary

Fix Cypress integration tests timing out in CI after 15 seconds instead of the intended 300 seconds.

Problem

Multiple Cypress integration tests were failing in CI with 15-second timeouts when they should be using a 300-second timeout. The tests defined WAIT_OPTIONS = { requestTimeout: 300000 } but this option was not being honored by cy.wait().

Root Cause

The requestTimeout option passed to cy.wait() controls how long to wait for the request to be sent, not how long to wait for the response to arrive or for the overall wait command to complete. Tests were timing out at the global default requestTimeout of 15 seconds (defined in cypress-common-config.js:115) regardless of the WAIT_OPTIONS being passed.

Solution

Changed requestTimeout to timeout in all affected test files. The timeout option is the correct and most reliable option for controlling how long cy.wait() will wait for route aliases to resolve.

Changes

-const WAIT_OPTIONS = { requestTimeout: 300000 };
+const WAIT_OPTIONS = { timeout: 300000 };

Affected Files (8 total)

  • packages/integration-tests/tests/app/admission-webhook-warning-notifications.cy.ts
  • packages/integration-tests/tests/app/poll-console-updates.cy.ts
  • packages/integration-tests/tests/cluster-settings/channel-modal.cy.ts
  • packages/integration-tests/tests/cluster-settings/update-in-progress.cy.ts
  • packages/integration-tests/tests/cluster-settings/update-modal.cy.ts
  • packages/integration-tests/tests/cluster-settings/updates-graph.cy.ts
  • packages/integration-tests/tests/cluster-settings/upgradeable-false.cy.ts
  • packages/integration-tests/tests/cluster-settings/worker-mcp-paused.cy.ts

Testing

  • Verified all 8 files now use the correct timeout option
  • No other instances of requestTimeout in test wait options remain

References

🤖 Generated with Claude Code

Summary by CodeRabbit

  • Chores
  • Enhanced test infrastructure to optionally enable test recording and monitoring
  • Updated test configuration parameters across integration tests

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
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Apr 15, 2026

@rhamilto: 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.

@openshift-cherrypick-robot
Copy link
Copy Markdown

@rhamilto: new pull request created: #16292

Details

In response to this:

/cherry-pick release-4.22

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.

@openshift-cherrypick-robot
Copy link
Copy Markdown

@rhamilto: new pull request created: #16293

Details

In response to this:

/cherry-pick release-4.23
/jira refresh

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.

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. component/dev-console Related to dev-console component/helm Related to helm-plugin component/knative Related to knative-plugin component/olm Related to OLM component/topology Related to topology jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. kind/cypress Related to Cypress e2e integration testing lgtm Indicates that a PR is ready to be merged. verified Signifies that the PR passed pre-merge verification criteria

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants