Skip to content

OU-1269: Update monitoring-console-plugin for 4.22#923

Open
PeterYurkovich wants to merge 4 commits into
openshift:mainfrom
PeterYurkovich:update-mcp-with-fixes
Open

OU-1269: Update monitoring-console-plugin for 4.22#923
PeterYurkovich wants to merge 4 commits into
openshift:mainfrom
PeterYurkovich:update-mcp-with-fixes

Conversation

@PeterYurkovich
Copy link
Copy Markdown
Contributor

@PeterYurkovich PeterYurkovich commented May 11, 2026

This PR looks to update the monitoring-console-plugin pages for 4.22. It incorporates changes from the release-coo-0.5 branch as well as some other fixes from the new DataView usage. It finalized the removal of importing namespace scope React and adds a lint rule to prevent its usage in the future

Summary by CodeRabbit

  • Bug Fixes

    • Removed spurious "Cluster" column from alert tables; datasource lookup now tolerates missing results.
  • New Features

    • Overhauled dashboard create/import flows with improved validation, project selection/creation, and toast-based feedback.
  • Refactor

    • Broad TypeScript/React typing and import cleanups across UI components (no runtime behavior changes).
  • Documentation

    • Dashboard locale updates; AGENTS.md component test example contains corrupted diff artifacts and needs correction.
  • Chores

    • Deployment flow simplified/changed (deploy script/Makefile updates).

@openshift-ci-robot
Copy link
Copy Markdown

openshift-ci-robot commented May 11, 2026

@PeterYurkovich: This pull request references OU-1269 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:

This PR looks to update the monitoring-console-plugin pages for 4.22. It incorporates changes from the release-coo-0.5 branch as well as some other fixes from the new DataView usage. It finalized the removal of importing namespace scope React and adds a lint rule to prevent its usage in the future

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-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label May 11, 2026
@openshift-ci openshift-ci Bot requested review from jgbernalp and zhuje May 11, 2026 21:19
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 11, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: PeterYurkovich

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 openshift-ci Bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label May 11, 2026
@PeterYurkovich
Copy link
Copy Markdown
Contributor Author

/cherry-pick release-coo-ocp-4.22

@openshift-cherrypick-robot
Copy link
Copy Markdown

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

Details

In response to this:

/cherry-pick release-coo-ocp-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.

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 11, 2026

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

Walkthrough

Docs and deploy script edits; large, consistent refactor replacing default React imports/types with named imports and an ESLint prohibition; Perses dashboard dialogs rewritten to react-hook-form + Zod with shared helpers; assorted type-only tweaks, minor UI column removal, datasource/CSRF behavior tweaks, and a new data-test id.

Changes

React import & linting standardization

Layer / File(s) Summary
ESLint rule
web/eslint.config.ts
Adds no-restricted-syntax entries forbidding import React ... and import * as React ... with custom messages.
Named React imports & typings
web/src/** (examples: Incidents/*, MetricsPage.tsx, TypeaheadSelect.tsx, table/*, ols-tool-ui/*, dashboards/perses/*, contexts/MonitoringContext.tsx)
Replace default React import and React.* type references with named imports (FC, memo, Ref, FormEvent, KeyboardEvent, MouseEvent alias, ReactNode, etc.), update component typings (React.FCFC), and adjust event/ref types across components and hooks.

Perses dashboards — dialogs, helpers & validation (feature + behavioral)

Layer / File(s) Summary
Validation types & API
web/src/components/dashboards/perses/dashboard-action-validations.ts
Validation factory signatures now require t: TFunction; added exported ImportDashboardValidationType; unified duplicate-name error message generation to use t(...) interpolation.
Shared dialog helpers & hooks
web/src/components/dashboards/perses/dashboard-dialog-helpers.tsx
New exports: useDashboardProjects, useProjectCreation (ensure/create project + toasts + isCreatingProject), useDashboardNavigation, PermissionStateWrapper, and ProjectSelectFormGroup (Controller-backed Typeahead).
Create dialog refactor
web/src/components/dashboards/perses/dashboard-create-dialog.tsx
Rewritten to react-hook-form + Zod; uses shared helpers; ensures target project exists via ensureProjectExists before create; shows toasts; form reset now clears only form fields; create button state tied to form and project-creation state.
Import dialog refactor
web/src/components/dashboards/perses/dashboard-import-dialog.tsx
Rewritten to react-hook-form + Zod using shared helpers; import flow ensures project exists (ensureProjectExists), runs migration (useMigrateDashboard), uses toast alerts for success/errors, and navigates to the created dashboard.
Action modals & small exports
web/src/components/dashboards/perses/dashboard-action-modals.tsx
Exported formGroupStyle and LabelSpacer; changed DuplicateActionModal validation argument order and modal close/reset behavior (reset only dashboardName).
Perses UI typing/style updates
web/src/components/dashboards/perses/* (frame, header, list, page, toast provider, actions menu, list frame)
Adopt named React imports/FC typing and memo usage; type-only refactors across the Perses components.

Alerting, Incidents & test IDs

Layer / File(s) Summary
Cluster column removal
web/src/components/alerting/AlertList/AggregateAlertTableRow.tsx, web/src/components/alerting/AlertsPage.tsx
Removed conditional insertion of a “Cluster” column for the ACM perspective; column keys now return base keys unconditionally.
Incidents typing & icons
web/src/components/Incidents/*
Updated to named React imports and FC typings for icons and handlers; no runtime changes.
Test IDs
web/src/components/data-test.ts
Added DataTestIDs.AlertingRuleCluster = 'alerting-rule-cluster'.

Datasource & CSRF helper tweaks

Layer / File(s) Summary
Datasource API behavior
web/src/components/dashboards/perses/datasource-api.ts
OcpDatasourceApi.getDatasource and getGlobalDatasource now log a console warning and return undefined when no matching datasource is found instead of throwing.
CSRF header guard
web/src/components/dashboards/perses/perses/datasource-cache-api.ts
addCsrfToken early-returns when nested datasource?.spec?.plugin?.spec is missing to avoid accessing undefined nested fields before injecting proxy headers.

Docs, locales, and deployment

Layer / File(s) Summary
Docs / code examples
AGENTS.md, web/cypress/CYPRESS_TESTING_GUIDE.md
AGENTS.md component test example contains diff-hunk and stray line-number artifacts; Cypress guide example removed the explicit import React line from the shown snippet and adjusted trailing newline.
Locale edits
web/locales/en/plugin__monitoring-plugin.json
Moved/added/removed several dashboard-related keys; added "Error migrating dashboard: {{error}}".
Deploy script / Makefile
scripts/deploy-acm.sh, Makefile
Removed script body for scripts/deploy-acm.sh (colors, yq checks, macOS rollback/osascript notification, and export DOCKER_FILE_NAME=Dockerfile.mcp). Makefile deploy-acm target now inlines PUSH=1 REPO=monitoring-console-plugin DOCKER_FILE_NAME=Dockerfile.dev-mcp scripts/build-image.sh plus Helm uninstall/install enabling plugin.features.acm.enabled=true.

Sequence Diagram(s)

sequenceDiagram
    participant User as rgba(10,120,200,0.5) User
    participant UI as rgba(0,150,136,0.5) UI (React)
    participant Perses as rgba(255,193,7,0.5) Perses API
    participant Backend as rgba(156,39,176,0.5) Backend API
    participant Toast as rgba(244,67,54,0.5) Toasts

    User->>UI: Open Create/Import dialog
    UI->>UI: Render PermissionStateWrapper + react-hook-form
    UI->>Perses: load editable projects (useDashboardProjects)
    Perses-->>UI: projects list
    User->>UI: Submit form
    UI->>UI: ensureProjectExists(project) via useProjectCreation
    UI->>Backend: create project (if missing)
    Backend-->>UI: project created / error
    UI->>Backend: migrate/import dashboard (useMigrateDashboard)
    Backend-->>UI: import result
    UI->>Toast: addAlert(success/error)
    UI->>UI: navigateToDashboard(createdDashboard)
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~60 minutes

Possibly related PRs

Suggested labels

lgtm

Suggested reviewers

  • zhuje
  • etmurasaki
🚥 Pre-merge checks | ✅ 11 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 33.33% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (11 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'OU-1269: Update monitoring-console-plugin for 4.22' clearly and specifically summarizes the main objective of the pull request, which is to update the monitoring-console-plugin for OpenShift 4.22. The changeset comprehensively supports this purpose, including React import refactoring, lint rule additions, dashboard dialog improvements, and removal of ACM-specific code paths. The title is concise, directly related to the primary change, and provides meaningful context.
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 No Ginkgo tests found in repository. This codebase uses standard Go testing (testing package) and Cypress for integration tests, not Ginkgo framework. Custom check is not applicable.
Test Structure And Quality ✅ Passed Ginkgo test check not applicable. PR modifies Jest tests only. Repository uses Jest and testify, not Ginkgo.
Microshift Test Compatibility ✅ Passed No new Ginkgo e2e tests are added in this PR. The PR only modifies React components, documentation, configuration, and build scripts. The MicroShift compatibility check is not applicable.
Single Node Openshift (Sno) Test Compatibility ✅ Passed This PR does not add any new Ginkgo e2e tests. The changes involve TypeScript refactoring, ESLint config, and build updates. The SNO test compatibility check is not applicable.
Topology-Aware Scheduling Compatibility ✅ Passed PR only modifies React components, documentation, and build configs. No deployment manifests, operator code, controllers, or scheduling constraints were added or modified.
Ote Binary Stdout Contract ✅ Passed OTE Binary Stdout Contract check is not applicable. This is a web UI console plugin, not an OTE/Ginkgo test binary. No OTE test framework or stdout writes in process-level code.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed PR adds pkg/server_test.go with standard Go unit tests (using testing.T), not Ginkgo e2e tests. Custom check applies only to Ginkgo tests (It, Describe, Context, When). Not applicable to this PR.

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

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

Tip

💬 Introducing Slack Agent: The best way for teams to turn conversations into code.

Slack Agent is built on CodeRabbit's deep understanding of your code, so your team can collaborate across the entire SDLC without losing context.

  • Generate code and open pull requests
  • Plan features and break down work
  • Investigate incidents and troubleshoot customer tickets together
  • Automate recurring tasks and respond to alerts with triggers
  • Summarize progress and report instantly

Built for teams:

  • Shared memory across your entire org—no repeating context
  • Per-thread sandboxes to safely plan and execute work
  • Governance built-in—scoped access, auditability, and budget controls

One agent for your entire SDLC. Right inside Slack.

👉 Get started


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

coderabbitai[bot]

This comment was marked as resolved.

@PeterYurkovich PeterYurkovich force-pushed the update-mcp-with-fixes branch 2 times, most recently from 4bfdc6e to 952dfaa Compare May 12, 2026 01:29
Copy link
Copy Markdown

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

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 `@scripts/deploy-acm.sh`:
- Around line 3-5: The script currently exports DOCKER_FILE_NAME and REPO but
they are unused and the call to make deploy does not enable ACM; either remove
those unused exports and add a short comment describing what make deploy does,
or modify the deployment to enable ACM by ensuring the helm install/upgrade
invoked by the make target sets plugin.features.acm.enabled=true and supplies
required ACM URLs; locate the make target named "deploy" (and any helm command
it runs) and add --set plugin.features.acm.enabled=true (and the ACM URL values)
or alternatively delete DOCKER_FILE_NAME/REPO and add a comment in
scripts/deploy-acm.sh describing that make deploy only sets plugin.image.
🪄 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: 28e4b566-cf93-42d9-a3a8-ccffc6b90f29

📥 Commits

Reviewing files that changed from the base of the PR and between 4bfdc6e and 952dfaa.

📒 Files selected for processing (43)
  • AGENTS.md
  • scripts/deploy-acm.sh
  • web/cypress/CYPRESS_TESTING_GUIDE.md
  • web/eslint.config.ts
  • web/locales/en/plugin__monitoring-plugin.json
  • web/src/components/Incidents/IncidentAlertStateIcon.tsx
  • web/src/components/Incidents/IncidentsChart/IncidentsChart.tsx
  • web/src/components/Incidents/IncidentsPage.tsx
  • web/src/components/Incidents/ToolbarItemFilter.tsx
  • web/src/components/Incidents/utils.ts
  • web/src/components/MetricsPage.tsx
  • web/src/components/TypeaheadSelect.tsx
  • web/src/components/alerting/AlertList/AggregateAlertTableRow.tsx
  • web/src/components/alerting/AlertList/LabelFilter.tsx
  • web/src/components/alerting/AlertsPage.tsx
  • web/src/components/console/utils/ref-width-hook.ts
  • web/src/components/console/utils/single-typeahead-dropdown.tsx
  • web/src/components/dashboards/perses/PersesWrapper.tsx
  • web/src/components/dashboards/perses/ToastProvider.tsx
  • web/src/components/dashboards/perses/dashboard-action-modals.tsx
  • web/src/components/dashboards/perses/dashboard-action-validations.ts
  • web/src/components/dashboards/perses/dashboard-actions-menu.tsx
  • web/src/components/dashboards/perses/dashboard-create-dialog.tsx
  • web/src/components/dashboards/perses/dashboard-dialog-helpers.tsx
  • web/src/components/dashboards/perses/dashboard-frame.tsx
  • web/src/components/dashboards/perses/dashboard-header.tsx
  • web/src/components/dashboards/perses/dashboard-import-dialog.tsx
  • web/src/components/dashboards/perses/dashboard-list-frame.tsx
  • web/src/components/dashboards/perses/dashboard-list.tsx
  • web/src/components/dashboards/perses/dashboard-page.tsx
  • web/src/components/dashboards/perses/datasource-api.ts
  • web/src/components/dashboards/perses/perses/datasource-cache-api.ts
  • web/src/components/dashboards/perses/project/ProjectDropdown.tsx
  • web/src/components/data-test.ts
  • web/src/components/ols-tool-ui/ShowTimeseries.tsx
  • web/src/components/ols-tool-ui/helpers/AddToDashboardButton.tsx
  • web/src/components/ols-tool-ui/helpers/OlsToolUIPersesWrapper.tsx
  • web/src/components/table/TableFilters.tsx
  • web/src/components/table/TableToolbar.tsx
  • web/src/components/table/useTableColumns.ts
  • web/src/components/table/useTablePagination.ts
  • web/src/components/targets-page.tsx
  • web/src/contexts/MonitoringContext.tsx
💤 Files with no reviewable changes (3)
  • web/src/components/alerting/AlertList/AggregateAlertTableRow.tsx
  • web/cypress/CYPRESS_TESTING_GUIDE.md
  • AGENTS.md
✅ Files skipped from review due to trivial changes (24)
  • web/src/components/ols-tool-ui/helpers/OlsToolUIPersesWrapper.tsx
  • web/src/components/dashboards/perses/dashboard-list-frame.tsx
  • web/src/components/Incidents/utils.ts
  • web/src/components/dashboards/perses/ToastProvider.tsx
  • web/src/components/targets-page.tsx
  • web/src/components/console/utils/ref-width-hook.ts
  • web/src/components/table/TableToolbar.tsx
  • web/src/components/ols-tool-ui/ShowTimeseries.tsx
  • web/src/components/ols-tool-ui/helpers/AddToDashboardButton.tsx
  • web/src/components/dashboards/perses/dashboard-actions-menu.tsx
  • web/eslint.config.ts
  • web/src/components/dashboards/perses/dashboard-list.tsx
  • web/src/components/dashboards/perses/dashboard-page.tsx
  • web/src/components/table/useTableColumns.ts
  • web/src/components/Incidents/IncidentsPage.tsx
  • web/src/components/table/TableFilters.tsx
  • web/src/components/dashboards/perses/PersesWrapper.tsx
  • web/src/components/table/useTablePagination.ts
  • web/src/components/dashboards/perses/dashboard-header.tsx
  • web/src/components/dashboards/perses/project/ProjectDropdown.tsx
  • web/src/components/Incidents/IncidentsChart/IncidentsChart.tsx
  • web/src/components/TypeaheadSelect.tsx
  • web/src/contexts/MonitoringContext.tsx
  • web/src/components/MetricsPage.tsx
🚧 Files skipped from review as they are similar to previous changes (14)
  • web/src/components/data-test.ts
  • web/src/components/alerting/AlertList/LabelFilter.tsx
  • web/src/components/Incidents/ToolbarItemFilter.tsx
  • web/src/components/dashboards/perses/dashboard-frame.tsx
  • web/src/components/alerting/AlertsPage.tsx
  • web/src/components/Incidents/IncidentAlertStateIcon.tsx
  • web/src/components/dashboards/perses/dashboard-dialog-helpers.tsx
  • web/src/components/dashboards/perses/dashboard-create-dialog.tsx
  • web/src/components/dashboards/perses/dashboard-action-validations.ts
  • web/src/components/dashboards/perses/datasource-api.ts
  • web/src/components/dashboards/perses/dashboard-import-dialog.tsx
  • web/locales/en/plugin__monitoring-plugin.json
  • web/src/components/dashboards/perses/dashboard-action-modals.tsx
  • web/src/components/console/utils/single-typeahead-dropdown.tsx

Comment thread scripts/deploy-acm.sh Outdated
@jgbernalp
Copy link
Copy Markdown
Contributor

jgbernalp commented May 12, 2026

/test e2e-aws-ovn

@openshift openshift deleted a comment from openshift-ci Bot May 12, 2026
Copy link
Copy Markdown

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

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 `@Makefile`:
- Line 85: The recipe line for the deploy-acm target is indented with spaces
which triggers "missing separator"; replace the leading spaces before the
command "PUSH=1 REPO=monitoring-console-plugin
DOCKER_FILE_NAME=Dockerfile.dev-mcp scripts/build-image.sh" with a single tab
character so the Makefile recipe uses a tab indentation as required by GNU Make.
🪄 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: c349161b-96f3-4113-bd8f-32b44df0fa1c

📥 Commits

Reviewing files that changed from the base of the PR and between 952dfaa and 98b306f.

📒 Files selected for processing (2)
  • Makefile
  • scripts/deploy-acm.sh
💤 Files with no reviewable changes (1)
  • scripts/deploy-acm.sh

Comment thread Makefile Outdated
@PeterYurkovich PeterYurkovich force-pushed the update-mcp-with-fixes branch from 98b306f to 45e4a96 Compare May 12, 2026 12:27
@etmurasaki
Copy link
Copy Markdown
Contributor

@openshift-ci openshift-ci Bot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label May 12, 2026
@PeterYurkovich PeterYurkovich force-pushed the update-mcp-with-fixes branch from f027ed7 to e937886 Compare May 12, 2026 20:23
@openshift-ci openshift-ci Bot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label May 12, 2026
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 12, 2026

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

@PeterYurkovich
Copy link
Copy Markdown
Contributor Author

/cherry-pick release-4.22

@openshift-cherrypick-robot
Copy link
Copy Markdown

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

@etmurasaki
Copy link
Copy Markdown
Contributor

/label qe-approve

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 13, 2026

@etmurasaki: The label(s) /label qe-approve cannot be applied. These labels are supported: acknowledge-critical-fixes-only, platform/aws, platform/azure, platform/baremetal, platform/google, platform/libvirt, platform/openstack, ga, tide/merge-method-merge, tide/merge-method-rebase, tide/merge-method-squash, px-approved, docs-approved, qe-approved, ux-approved, no-qe, rebase/manual, cluster-config-api-changed, run-integration-tests, verified, ready-for-human-review, approved, backport-risk-assessed, bugzilla/valid-bug, cherry-pick-approved, jira/skip-dependent-bug-check, jira/valid-bug, ok-to-test, stability-fix-approved, staff-eng-approved. Is this label configured under labels -> additional_labels or labels -> restricted_labels in plugin.yaml?

Details

In response to this:

/label qe-approve

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.

@etmurasaki
Copy link
Copy Markdown
Contributor

/label qe-approved

@openshift-ci openshift-ci Bot added the qe-approved Signifies that QE has signed off on this PR label May 13, 2026
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. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. qe-approved Signifies that QE has signed off on this PR

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants