Skip to content

NVIDIA-554: DPU-host mode: use ConfigMap for OVN feature enablement instead of per-node script gating#2944

Merged
openshift-merge-bot[bot] merged 3 commits intoopenshift:masterfrom
tsorya:igal/dpu-host-mode
May 6, 2026
Merged

NVIDIA-554: DPU-host mode: use ConfigMap for OVN feature enablement instead of per-node script gating#2944
openshift-merge-bot[bot] merged 3 commits intoopenshift:masterfrom
tsorya:igal/dpu-host-mode

Conversation

@tsorya
Copy link
Copy Markdown
Contributor

@tsorya tsorya commented Mar 20, 2026

NVIDIA-554: DPU-host mode: use ConfigMap for OVN feature enablement instead of per-node script gating

     All OVN-Kubernetes features (egress IP, egress firewall, multicast,
  multi-network, admin network policy, multi-external-gateway, etc.)
  are now enabled in DPU-host mode. The OVN controller on DPU-host
  nodes processes the configuration but does not offload egress IP
  datapath — traffic follows the regular kernel path instead.

    OVN_NODE_MODE remains used only for DPU-host structural differences:
    gateway interface, ovnkube-node-mode flag, and init-controller.

  Because these features are safe to enable cluster-wide, the per-node
  gating logic in the startup script (008-script-lib.yaml) is no
  longer needed. Feature flags are managed solely through the
  cluster-wide ConfigMap (004-config.yaml) passed to ovnkube via
  --config-file.

    Co-authored-by: Cursor <cursoragent@cursor.com>
    Made-with: Cursor

This reverts commit 6f5697cb0b25fe1ad6cb48a9c969653475afa4b9

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Mar 20, 2026
@openshift-ci-robot
Copy link
Copy Markdown
Contributor

openshift-ci-robot commented Mar 20, 2026

@tsorya: This pull request references NVIDIA-554 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 "4.22.0" version, but no target version was set.

Details

In response to this:

NVIDIA-554: DPU-host mode: use ConfigMap for OVN feature enablement instead of per-node script gating

   Feature flags (egress IP, multicast, multi-network, network
   segmentation, admin network policy, multi-external-gateway, etc.)
   are managed via the cluster-wide ConfigMap (004-config.yaml) passed
   to ovnkube through --config-file. They do not need per-node gating
   in the startup script.

   OVN_NODE_MODE remains used only for DPU-host structural differences:
   gateway interface, ovnkube-node-mode flag, and init-controller.

   Also re-applies the feature gate cleanup from f5b8490 (removal of
   OVN_ADMIN_NETWORK_POLICY_ENABLE template references) and removes
   redundant CLI flags from 008-script-lib.yaml that duplicate what
   the ConfigMap already provides.

   Co-authored-by: Cursor <cursoragent@cursor.com>
   Made-with: Cursor

This reverts commit 6f5697c

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.

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Mar 20, 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

Per-node OVN_NODE_MODE-based feature gating was removed; feature enablement is now configured cluster-wide via the ovnkube ConfigMap. Startup scripts and control-plane manifests stop constructing/passing per-node feature flags; documentation and tests were updated to match the centralized configuration model.

Changes

Cohort / File(s) Summary
Documentation
README.md, docs/architecture.md, docs/operands.md, docs/ovn_node_mode.md
Removed sections describing per-node/DPU-host feature disabling and mode-driven feature flags; replaced with guidance that OVN_NODE_MODE is an identifier only and feature flags are managed cluster-wide via the ovnkube ConfigMap.
Startup script library
bindata/network/ovn-kubernetes/common/008-script-lib.yaml
Removed conditional construction/clearing of per-node feature flag variables (egress, multicast variable handling, multi-network, multi-networkpolicy, admin-network-policy, preconfigured UDN, DNS resolver). Simplified gateway_interface logic; pass --enable-multicast directly and drop egress/multi-external-gateway CLI flags.
Managed manifests / Config
bindata/network/ovn-kubernetes/managed/004-config.yaml, bindata/network/ovn-kubernetes/managed/ovnkube-control-plane.yaml
ConfigMap now emits egress flags and enable-multi-network, enable-admin-network-policy, enable-multi-external-gateway unconditionally; control-plane manifest no longer constructs/passes corresponding conditional CLI flags and adds an explicit --enable-multicast.
Self-hosted manifests / Config
bindata/network/ovn-kubernetes/self-hosted/004-config.yaml, bindata/network/ovn-kubernetes/self-hosted/ovnkube-control-plane.yaml
Unconditionally enabled egress-related flags, enable-multi-network, enable-admin-network-policy, and enable-multi-external-gateway in ovnkube ConfigMap; removed per-node conditional CLI flag plumbing from control-plane startup and added explicit --enable-multicast.
Tests
pkg/network/ovn_kubernetes_test.go
Updated expected rendered ovnkube.conf to include additional [ovnkubernetesfeature] entries (egress flags, enable-multi-network, enable-admin-network-policy, enable-multi-external-gateway); removed helper functions and tests tied to per-node/render overrides. Review updated expectations and deleted helpers.

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~50 minutes

✨ 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 arghosh93 and miheer March 20, 2026 17:49
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.

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
bindata/network/ovn-kubernetes/common/008-script-lib.yaml (1)

701-724: ⚠️ Potential issue | 🟠 Major

Multicast should be moved to 004-config.yaml per documented design.

The documentation states that "Feature enablement (egress IP, multicast, multi-network, network segmentation, admin network policy, etc.) is managed through the cluster-wide ConfigMap (004-config.yaml)", but --enable-multicast is still hardcoded as a CLI flag at line 723. The 004-config.yaml templates contain dozens of enable-* settings (e.g., enable-egress-ip, enable-multi-network, enable-admin-network-policy) but enable-multicast is absent. Either move multicast configuration into the config file to align with the documented design and other features, or update the documentation to clarify why multicast remains CLI-driven.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@bindata/network/ovn-kubernetes/common/008-script-lib.yaml` around lines 701 -
724, The script currently hardcodes the CLI flag --enable-multicast in the
ovnkube exec line; move multicast feature toggling into the cluster-wide
ConfigMap like other features in 004-config.yaml. Add a ConfigMap/template key
(e.g., enable-multicast) to 004-config.yaml, expose it as a rendered variable
(e.g., multicast_enable_flag) alongside the existing flags (similar to
network_observability_enabled_flag), then replace the literal --enable-multicast
in the exec invocation with the variable ${multicast_enable_flag} (or remove it
when false). Alternatively, if you intend multicast to stay CLI-driven, update
the docs to explicitly state why --enable-multicast remains a hardcoded flag
instead of being managed via 004-config.yaml.
🧹 Nitpick comments (1)
pkg/network/ovn_kubernetes_test.go (1)

296-306: Add one DPU-host regression case.

These updated goldens prove the new [ovnkubernetesfeature] contents, but they still don't lock in the behavior this PR is changing: dpu-host should stop rewriting feature flags while still changing gateway/interface selection, --ovnkube-node-mode, and init_ovnkube_controller. A small render test around ovnkube-lib.sh would make that contract much harder to regress.

Also applies to: 342-352, 401-412, 463-474, 525-535, 586-596, 636-646, 689-699, 735-745, 782-793, 831-841, 877-887, 925-935, 972-982

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@pkg/network/ovn_kubernetes_test.go` around lines 296 - 306, Add a single
regression test case in pkg/network/ovn_kubernetes_test.go that renders
ovnkube-lib.sh for the dpu-host node mode: feed the test input containing the
full [ovnkubernetesfeature] block shown in the diff, set node mode to
"dpu-host", and assert that the output preserves the entire
[ovnkubernetesfeature] block exactly (no feature flags rewritten) while still
updating only the gateway/interface selection, the --ovnkube-node-mode value to
"dpu-host", and the init_ovnkube_controller behavior; place the case alongside
the existing render tests in the file that exercise ovnkube-lib.sh so it will
fail if dpu-host rewrites feature flags.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Outside diff comments:
In `@bindata/network/ovn-kubernetes/common/008-script-lib.yaml`:
- Around line 701-724: The script currently hardcodes the CLI flag
--enable-multicast in the ovnkube exec line; move multicast feature toggling
into the cluster-wide ConfigMap like other features in 004-config.yaml. Add a
ConfigMap/template key (e.g., enable-multicast) to 004-config.yaml, expose it as
a rendered variable (e.g., multicast_enable_flag) alongside the existing flags
(similar to network_observability_enabled_flag), then replace the literal
--enable-multicast in the exec invocation with the variable
${multicast_enable_flag} (or remove it when false). Alternatively, if you intend
multicast to stay CLI-driven, update the docs to explicitly state why
--enable-multicast remains a hardcoded flag instead of being managed via
004-config.yaml.

---

Nitpick comments:
In `@pkg/network/ovn_kubernetes_test.go`:
- Around line 296-306: Add a single regression test case in
pkg/network/ovn_kubernetes_test.go that renders ovnkube-lib.sh for the dpu-host
node mode: feed the test input containing the full [ovnkubernetesfeature] block
shown in the diff, set node mode to "dpu-host", and assert that the output
preserves the entire [ovnkubernetesfeature] block exactly (no feature flags
rewritten) while still updating only the gateway/interface selection, the
--ovnkube-node-mode value to "dpu-host", and the init_ovnkube_controller
behavior; place the case alongside the existing render tests in the file that
exercise ovnkube-lib.sh so it will fail if dpu-host rewrites feature flags.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 5c1994eb-63ed-421c-ab98-8900f240f6ff

📥 Commits

Reviewing files that changed from the base of the PR and between 5b0900b and f58272e.

📒 Files selected for processing (10)
  • README.md
  • bindata/network/ovn-kubernetes/common/008-script-lib.yaml
  • bindata/network/ovn-kubernetes/managed/004-config.yaml
  • bindata/network/ovn-kubernetes/managed/ovnkube-control-plane.yaml
  • bindata/network/ovn-kubernetes/self-hosted/004-config.yaml
  • bindata/network/ovn-kubernetes/self-hosted/ovnkube-control-plane.yaml
  • docs/architecture.md
  • docs/operands.md
  • docs/ovn_node_mode.md
  • pkg/network/ovn_kubernetes_test.go
💤 Files with no reviewable changes (3)
  • README.md
  • docs/architecture.md
  • docs/operands.md

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented Mar 21, 2026

/retest-required

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented Mar 21, 2026

/test ?

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented Mar 22, 2026

oc exec -it -n openshift-ovn-kubernetes ovnkube-node-bpkjk -- bash [root@dhcp-8-231-235 ~]# ovn-nbctl find ACL | grep -i mcast match : "(ip4.mcast || mldv1 || mldv2 || (ip6.dst[120..127] == 0xff && ip6.dst[116] == 1))" match : "(ip4.mcast || mldv1 || mldv2 || (ip6.dst[120..127] == 0xff && ip6.dst[116] == 1))" match : "outport == @a15696136357465712812 && (igmp || (ip4.src == $a14513626322132345176 && ip4.mcast))" match : "outport == @a4743249366342378346 && (ip4.mcast || mldv1 || mldv2 || (ip6.dst[120..127] == 0xff && ip6.dst[116] == 1))" match : "inport == @a4743249366342378346 && (ip4.mcast || mldv1 || mldv2 || (ip6.dst[120..127] == 0xff && ip6.dst[116] == 1))" match : "inport == @a15696136357465712812 && ip4.mcast"

10.130.0.3 : unicast, xmt/rcv/%loss = 10/10/0%, min/avg/max/std-dev = 0.290/0.404/1.026/0.222 10.130.0.3 : multicast, xmt/rcv/%loss = 10/9/9% (seq>=2 0%), min/avg/max/std-dev = 0.307/0.522/1.115/0.319 10.128.0.30 : unicast, xmt/rcv/%loss = 10/10/0%, min/avg/max/std-dev = 0.314/0.449/0.717/0.140 10.128.0.30 : multicast, xmt/rcv/%loss = 10/9/9% (seq>=2 0%), min/avg/max/std-dev = 0.285/0.445/0.823/0.155

10.128.0.30 : unicast, xmt/rcv/%loss = 10/10/0%, min/avg/max/std-dev = 0.307/0.488/0.991/0.218 10.128.0.30 : multicast, xmt/rcv/%loss = 10/9/9% (seq>=2 0%), min/avg/max/std-dev = 0.313/0.499/1.212/0.273 10.129.0.7 : unicast, xmt/rcv/%loss = 10/10/0%, min/avg/max/std-dev = 0.307/0.462/1.057/0.252 10.129.0.7 : multicast, xmt/rcv/%loss = 10/9/9% (seq>=2 0%), min/avg/max/std-dev = 0.320/0.501/1.513/0.382

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented Mar 26, 2026

/retest

@openshift-ci openshift-ci Bot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Mar 26, 2026
@tsorya tsorya force-pushed the igal/dpu-host-mode branch from f58272e to 7f928af Compare March 26, 2026 17:49
@openshift-ci openshift-ci Bot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Mar 26, 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 the current code and only fix it if needed.

Inline comments:
In `@pkg/network/ovn_kubernetes_test.go`:
- Around line 298-308: Update the two failing tests to match the ConfigMap-based
migration: in TestOVNKubernetesControlPlaneFlags and
TestOVNKubernetesScriptLibCombined remove assertions that expect the removed CLI
flags and script-lib variables (the old enable-* CLI flags and corresponding
script-lib vars) and instead assert the presence/contents of the new
ovnkube.conf configmap golden (the block shown at lines 298–308). Also either
implement or remove references to the missing helpers
renderControlPlaneWithOverrides and renderScriptLibWithOverrides used by those
tests—if keeping them, implement helpers that render using the new ConfigMap
migration semantics and return the rendered ovnkube.conf/script-lib output;
otherwise delete calls to them and inline the appropriate rendering/assertion
using existing render helpers. Ensure all references are to the test names
TestOVNKubernetesControlPlaneFlags, TestOVNKubernetesScriptLibCombined and the
helper names renderControlPlaneWithOverrides/renderScriptLibWithOverrides so
reviewers can locate the edits.
🪄 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: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: d16edd6a-c511-46cc-ada2-5d68285bf3f3

📥 Commits

Reviewing files that changed from the base of the PR and between f58272e and 7f928af.

📒 Files selected for processing (10)
  • README.md
  • bindata/network/ovn-kubernetes/common/008-script-lib.yaml
  • bindata/network/ovn-kubernetes/managed/004-config.yaml
  • bindata/network/ovn-kubernetes/managed/ovnkube-control-plane.yaml
  • bindata/network/ovn-kubernetes/self-hosted/004-config.yaml
  • bindata/network/ovn-kubernetes/self-hosted/ovnkube-control-plane.yaml
  • docs/architecture.md
  • docs/operands.md
  • docs/ovn_node_mode.md
  • pkg/network/ovn_kubernetes_test.go
💤 Files with no reviewable changes (3)
  • docs/architecture.md
  • docs/operands.md
  • README.md
✅ Files skipped from review due to trivial changes (3)
  • bindata/network/ovn-kubernetes/managed/004-config.yaml
  • docs/ovn_node_mode.md
  • bindata/network/ovn-kubernetes/common/008-script-lib.yaml
🚧 Files skipped from review as they are similar to previous changes (1)
  • bindata/network/ovn-kubernetes/self-hosted/004-config.yaml

Comment thread pkg/network/ovn_kubernetes_test.go
@openshift-ci openshift-ci Bot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Mar 29, 2026
@tsorya tsorya force-pushed the igal/dpu-host-mode branch from 7f928af to f93b3fc Compare March 31, 2026 01:30
@openshift-ci openshift-ci Bot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Mar 31, 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.

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
pkg/network/ovn_kubernetes_test.go (1)

1020-1024: ⚠️ Potential issue | 🟠 Major

Test expectation appears inconsistent with ConfigMap template changes.

The "enable network connect (DevPreview)" test case expected output (lines 1020-1024) is missing the egress feature flags (enable-egress-ip=true, enable-egress-firewall=true, enable-egress-qos=true, enable-egress-service=true) and other flags (enable-multi-network=true, enable-admin-network-policy=true, enable-multi-external-gateway=true) that are now unconditionally emitted in the ConfigMap template per this PR.

All other test cases in this file were updated to include these flags, but this one appears to have been missed. This will likely cause the test to fail.

🐛 Proposed fix to add missing flags
 [ovnkubernetesfeature]
+enable-egress-ip=true
+enable-egress-firewall=true
+enable-egress-qos=true
+enable-egress-service=true
 egressip-node-healthcheck-port=9107
+enable-multi-network=true
 enable-network-segmentation=true
 enable-preconfigured-udn-addresses=true
+enable-admin-network-policy=true
+enable-multi-external-gateway=true
 enable-network-connect=true
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@pkg/network/ovn_kubernetes_test.go` around lines 1020 - 1024, The test case
"enable network connect (DevPreview)" in ovn_kubernetes_test.go has an outdated
expected ConfigMap snippet; update its expected output to include the
unconditionally emitted flags now present in the template: add
enable-egress-ip=true, enable-egress-firewall=true, enable-egress-qos=true,
enable-egress-service=true, enable-multi-network=true,
enable-admin-network-policy=true, and enable-multi-external-gateway=true to the
expected config string for that test case so it matches the other updated cases.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Outside diff comments:
In `@pkg/network/ovn_kubernetes_test.go`:
- Around line 1020-1024: The test case "enable network connect (DevPreview)" in
ovn_kubernetes_test.go has an outdated expected ConfigMap snippet; update its
expected output to include the unconditionally emitted flags now present in the
template: add enable-egress-ip=true, enable-egress-firewall=true,
enable-egress-qos=true, enable-egress-service=true, enable-multi-network=true,
enable-admin-network-policy=true, and enable-multi-external-gateway=true to the
expected config string for that test case so it matches the other updated cases.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 37e2203b-5661-4153-8807-475f50c6af4f

📥 Commits

Reviewing files that changed from the base of the PR and between 7f928af and f93b3fc.

📒 Files selected for processing (10)
  • README.md
  • bindata/network/ovn-kubernetes/common/008-script-lib.yaml
  • bindata/network/ovn-kubernetes/managed/004-config.yaml
  • bindata/network/ovn-kubernetes/managed/ovnkube-control-plane.yaml
  • bindata/network/ovn-kubernetes/self-hosted/004-config.yaml
  • bindata/network/ovn-kubernetes/self-hosted/ovnkube-control-plane.yaml
  • docs/architecture.md
  • docs/operands.md
  • docs/ovn_node_mode.md
  • pkg/network/ovn_kubernetes_test.go
💤 Files with no reviewable changes (3)
  • README.md
  • docs/architecture.md
  • docs/operands.md
🚧 Files skipped from review as they are similar to previous changes (4)
  • bindata/network/ovn-kubernetes/managed/ovnkube-control-plane.yaml
  • bindata/network/ovn-kubernetes/self-hosted/004-config.yaml
  • bindata/network/ovn-kubernetes/common/008-script-lib.yaml
  • docs/ovn_node_mode.md

@yingwang-0320
Copy link
Copy Markdown

/verified by pre-merge testing.
Ran CNO and multicast cases, all passed.

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

@yingwang-0320: This PR has been marked as verified by pre-merge testing..

Details

In response to this:

/verified by pre-merge testing.
Ran CNO and multicast cases, all passed.

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 removed the verified Signifies that the PR passed pre-merge verification criteria label Mar 31, 2026
@tsorya tsorya force-pushed the igal/dpu-host-mode branch from ed84508 to 526a5aa Compare April 1, 2026 04:14
@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented Apr 7, 2026

/retest-required

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented Apr 7, 2026

/retest-requires

@zshi-redhat
Copy link
Copy Markdown
Contributor

@tsorya hi, was there any QE testing done with this PR applied and automation/CI developed for the DPU-HOST mode? If so, would you mind pasting the testing result and CI links. I'd like to make sure we have a record for the testing on this PR and there is continuous CI job running to gate this functionality since we (core networking) currently don't have the necessary env nor CI to verify the piece of code for DPU functinoaliies.

@yingwang-0320 Sicne this change touches the enablement/disablement of several OVN-K features, could you also run testing for each of the mentioned features and see if they are functional as expected? meanwhile, like @tssurya suggested, we would also want to try enable the DPU Host mode (without testing DPU specific functionalities) and scheck if the cluster is stable.

@zshi-redhat
Copy link
Copy Markdown
Contributor

@danwinship Would you mind taking a look at this PR once the testing is done?
This is the PR that we merged, then reverted due to multicast regression. @tsorya proposed it again and confirmed that multicast is working with the current version.

@yingwang-0320
Copy link
Copy Markdown

@tsorya we don't have any DPU-HOST mode related testing yet. Not sure what environment or card needed to enable DPU-host mode, let me confirm and update here.

@yingwang-0320
Copy link
Copy Markdown

Confirmed with @tsorya , it's OK to verify CNO on regular mode.

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented Apr 28, 2026

@tsorya: trigger 5 job(s) of type blocking for the ci release of OCP 4.22

  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-aws-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-e2e-gcp-ovn-upgrade
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aks
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aws-ovn

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/c732cbd0-4347-11f1-8158-5f42053a853a-0

trigger 13 job(s) of type blocking for the nightly release of OCP 4.22

  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-upgrade-ovn-single-node
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-upgrade-fips
  • periodic-ci-openshift-release-main-ci-4.22-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-gcp-ovn-rt-upgrade
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aws-ovn-conformance
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-1of2
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-2of2
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-1of3
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-2of3
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-3of3
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ipi-ovn-ipv4
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ipi-ovn-ipv6

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/c732cbd0-4347-11f1-8158-5f42053a853a-1

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented Apr 29, 2026

/payload 4.22 ci blocking
/payload 4.22 nightly blocking

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented Apr 29, 2026

@tsorya: trigger 5 job(s) of type blocking for the ci release of OCP 4.22

  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-aws-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-e2e-gcp-ovn-upgrade
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aks
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aws-ovn

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/7958f360-4385-11f1-8387-ec92c7662d69-0

trigger 13 job(s) of type blocking for the nightly release of OCP 4.22

  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-upgrade-ovn-single-node
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-upgrade-fips
  • periodic-ci-openshift-release-main-ci-4.22-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-gcp-ovn-rt-upgrade
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aws-ovn-conformance
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-1of2
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-2of2
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-1of3
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-2of3
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-3of3
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ipi-ovn-ipv4
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ipi-ovn-ipv6

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/7958f360-4385-11f1-8387-ec92c7662d69-1

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented Apr 29, 2026

/test periodic-ci-openshift-release-main-ci-4.22-e2e-azure-ovn-upgrade

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented Apr 29, 2026

/test 4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade
/test pull-ci-openshift-cluster-network-operator-master-4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented Apr 30, 2026

4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade

  • [sig-cli] oc adm must-gather must-gather support since and since-time flags timeout [apigroup:config.openshift.io][Timeout:20m] [Suite:openshift/conformance/parallel]

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented Apr 30, 2026

/payload 4.22 ci blocking
/payload 4.22 nightly blocking

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented Apr 30, 2026

@tsorya: trigger 5 job(s) of type blocking for the ci release of OCP 4.22

  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-aws-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-e2e-gcp-ovn-upgrade
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aks
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aws-ovn

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/891a0760-44e5-11f1-9797-812882e74eb1-0

trigger 13 job(s) of type blocking for the nightly release of OCP 4.22

  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-upgrade-ovn-single-node
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-upgrade-fips
  • periodic-ci-openshift-release-main-ci-4.22-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-gcp-ovn-rt-upgrade
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aws-ovn-conformance
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-1of2
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-2of2
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-1of3
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-2of3
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-3of3
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ipi-ovn-ipv4
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ipi-ovn-ipv6

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/891a0760-44e5-11f1-9797-812882e74eb1-1

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 1, 2026

• periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-1of3: 401fc048-0800-4690-abe1-e83e251e8e7b
Broken here is the thread around it but in this case it failed on job timeout
https://redhat-internal.slack.com/archives/CDCP2LA9L/p1776833898911429

�periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-2of3
https://prow.ci.openshift.org/view/gs/test-platform-results/logs/openshift-cluster-network-operator-2944-ci-4.22-e2e-aws-ovn-techpreview-serial-2of3/2049348019928698880
Test succeeded failed on gathering logs, missin
[36mINFO�[0m[2026-04-29T05:53:57Z] Running step e2e-aws-ovn-techpreview-serial-openshift-e2e-test.
�[36mINFO�[0m[2026-04-29T07:20:15Z] Step e2e-aws-ovn-techpreview-serial-openshift-e2e-test succeeded after 1h26m17s.

•	periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-aws-ovn-upgrade: [ec33de8c-1304-4b3f-abaa-3c10d78913c1](https://prow.ci.openshift.org/view/gs/test-platform-results/logs/aggregator-periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-aws-ovn-upgrade/2049347947769892864)
•	periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade: [998f397c-fd2e-4652-8308-1e2da57b5540](https://prow.ci.openshift.org/view/gs/test-platform-results/logs/aggregator-periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade/2049347961195859968)
•	periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-gcp-ovn-rt-upgrade: [72d61568-5afe-4ea5-afd0-e6f6f603b191](https://prow.ci.openshift.org/view/gs/test-platform-results/logs/aggregator-periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-gcp-ovn-rt-upgrade/2049348074454650880)

Seems to be broken, thread around it
https://redhat-internal.slack.com/archives/C01CQA76KMX/p1777344203282859

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 1, 2026

Last run
periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-3of3: c7e6565b-7fcc-4efa-ad7c-5a5f573d6100
periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-2of3: 09b35ca0-f496-4fdc-8a04-662533c7b51d
periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-1of3: e145bb5b-24e4-4040-a9f1-0666905e5df3
periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview: 1b93d83b-c9c2-4d74-9721-1ed1c0800c4a
periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-2of2: 18701e44-b13a-4a8e-84c8-f0c8cb805611
periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-1of2: c87927c2-e92e-41cb-b790-d1e0aaa4547a

`* 0001-01-01T00:00:00Z 0x : 0/118 nodes are available: 1 node(s) had untolerated taint {node.kubernetes.io/disk-pressure: }, 1 node(s) had untolerated taint {node.kubernetes.io/not-ready: }, 11 node(s) had untolerated taint {node-role.kubernetes.io/ci-prowjobs-worker: ci-prowjobs-worker}, 12 node(s) didn't match Pod's node affinity/selector, 2 node(s) had untolerated taint {node-role.kubernetes.io/ci-builds-worker: ci-builds-worker}, 24 node(s) had untolerated taint {node-role.kubernetes.io/ci-longtests-worker: ci-longtests-worker}, 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 58 Insufficient cpu, 6 node(s) had untolerated taint {node-role.kubernetes.io/infra: }. preemption: 0/118 nodes are available: 58 No preemption victims found for incoming pod, 60 Preemption is not helpful for scheduling.

  • 0001-01-01T00:00:00Z 0x : 0/118 nodes are available: 1 node(s) had untolerated taint {node.kubernetes.io/disk-pressure: }, 11 node(s) had untolerated taint {node-role.kubernetes.io/ci-prowjobs-worker: ci-prowjobs-worker}, 12 node(s) didn't match Pod's node affinity/selector, 2 node(s) didn't satisfy existing pods anti-affinity rules, 2 node(s) had untolerated taint {node-role.kubernetes.io/ci-builds-worker: ci-builds-worker}, 25 node(s) had untolerated taint {node-role.kubernetes.io/ci-longtests-worker: ci-longtests-worker}, 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 56 Insufficient cpu, 6 node(s) had untolerated taint {node-role.kubernetes.io/infra: }. preemption: 0/118 nodes are available: 58 No preemption victims found for incoming pod, 60 Preemption is not helpful for scheduling.`

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 1, 2026

/payload 4.22 ci blocking
/payload 4.22 nightly blocking

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 1, 2026

@tsorya: trigger 5 job(s) of type blocking for the ci release of OCP 4.22

  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-aws-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-e2e-gcp-ovn-upgrade
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aks
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aws-ovn

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/5f245b10-457e-11f1-88b3-bbe09eda6f67-0

trigger 13 job(s) of type blocking for the nightly release of OCP 4.22

  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-upgrade-ovn-single-node
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-upgrade-fips
  • periodic-ci-openshift-release-main-ci-4.22-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-gcp-ovn-rt-upgrade
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aws-ovn-conformance
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-1of2
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-2of2
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-1of3
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-2of3
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-3of3
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ipi-ovn-ipv4
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ipi-ovn-ipv6

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/5f245b10-457e-11f1-88b3-bbe09eda6f67-1

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 1, 2026

/retest

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 2, 2026

latest run was better

periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-gcp-ovn-rt-upgrade: e13d2307-1204-4495-81f9-9d0f27458b4b
periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-aws-ovn-upgrade: 0c92ffd6-4fe8-40e3-88dd-dac0c30d7854
periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade: 4954066b-b1f1-4c72-9aee-a4a543acf56d
pod "network-check-target-njvzg" is using the default service account

periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-1of3: dbd9ca29-0561-463d-811c-3e34e78a5978
{ 1 events happened too frequently

event happened 22 times, something is wrong: namespace/openshift-config-operator node/ip-10-0-111-205.ec2.internal pod/openshift-config-operator-7cdbb85bd7-5n8md hmsg/440100f6ee - reason/ProbeError Liveness probe error: Get "https://10.129.0.30:8443/healthz": dial tcp 10.129.0.30:8443: connect: connection refused result=reject
body:
(20:15:44Z)}

https://prow.ci.openshift.org/view/gs/test-platform-results/logs/openshift-cluster-network-operator-2944-ci-4.22-upgrade-from-stable-4.21-e2e-aws-ovn-upgrade/2050257487575126016
The phase of Pod resize-test-22b4h is Failed which is unexpected.

Don't see anything that can be somehow influenced by this PR

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 2, 2026

/payload 4.22 ci blocking
/payload 4.22 nightly blocking

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 2, 2026

@tsorya: trigger 5 job(s) of type blocking for the ci release of OCP 4.22

  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-aws-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-e2e-gcp-ovn-upgrade
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aks
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aws-ovn

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/2c0fff90-4650-11f1-98f7-ca3c66133201-0

trigger 13 job(s) of type blocking for the nightly release of OCP 4.22

  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-upgrade-ovn-single-node
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-upgrade-fips
  • periodic-ci-openshift-release-main-ci-4.22-e2e-azure-ovn-upgrade
  • periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-gcp-ovn-rt-upgrade
  • periodic-ci-openshift-hypershift-release-4.22-periodics-e2e-aws-ovn-conformance
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-1of2
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-aws-ovn-serial-2of2
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-1of3
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-2of3
  • periodic-ci-openshift-release-main-ci-4.22-e2e-aws-ovn-techpreview-serial-3of3
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ipi-ovn-ipv4
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ipi-ovn-ipv6

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/2c0fff90-4650-11f1-98f7-ca3c66133201-1

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 5, 2026

periodic-ci-openshift-release-main-ci-4.22-e2e-aws-upgrade-ovn-single-node:

  1. run failed on "kube-apiserver" in namespace: "openshift-kube-apiserver" for revision: 6 on node: "ip-10-0-115-216.us-west-2.compute.internal" didn't show up though this is test issue as revision 7 was there.
  2. 3 tests failed on [sig-node] Pod InPlace Resize Container guaranteed qos - resizing mem
  3. others failed on event happened 27 times, something is wrong: namespace/openshift-machine-config-operator /machine-config hmsg/cd9e602a3c - reason/OperatorDegraded: MachineConfigNodeFailed Failed to resync 4.22.0-0.ci-2026-05-02-032308 because: Get "https://172.30.0.1:443/apis/machineconfiguration.openshift.io/v1/machineconfignodes": dial tcp 172.30.0.1:443: connect: connection refused (19:29:09Z) result=reject or similar, which can happen on SNO upgrade cluster when etcd or kubeapi is not reachable and seems this this SNO vm was pretty slow

periodic-ci-openshift-release-main-ci-4.22-upgrade-from-stable-4.21-e2e-gcp-ovn-rt-upgrade

  1. 6/9 runs (1, 2, 4, 5, 8, 9) fail purely on the no-default-service-account monitor test -- nothing else
  2. 3/9 runs (3, 7, 10) also have 1 additional blocking e2e conformance test failure each (all different tests -- sig-cli, sig-api-machinery -- none networking-related

periodics-e2e-aws-ovn-conformance

  1. 4 tests failed on [sig-etcd] etcd leader changes are not excessive
  2. 2 tests failed on
    [sig-node] [DRA] kubelet DynamicResourceAllocation - inline claim referenced by multiple containers

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 5, 2026

/verified by @tsorya

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

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

Details

In response to this:

/verified by @tsorya

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.

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 5, 2026

/verified by @tsorya

@openshift-ci-robot
Copy link
Copy Markdown
Contributor

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

Details

In response to this:

/verified by @tsorya

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

/retest-required

Remaining retests: 0 against base HEAD b1101d1 and 2 for PR HEAD f4734c5 in total

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 5, 2026

@tsorya: 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/prow/e2e-aws-ovn-rhcos10-techpreview f4734c5 link false /test e2e-aws-ovn-rhcos10-techpreview
ci/prow/security f4734c5 link false /test security
ci/prow/4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade f4734c5 link false /test 4.22-upgrade-from-stable-4.21-e2e-azure-ovn-upgrade

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.

@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 6, 2026

/retest-required

1 similar comment
@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 6, 2026

/retest-required

@openshift-merge-bot openshift-merge-bot Bot merged commit cb1b119 into openshift:master May 6, 2026
27 of 30 checks passed
@tsorya
Copy link
Copy Markdown
Contributor Author

tsorya commented May 7, 2026

/cherrypick release-4.22

@openshift-cherrypick-robot
Copy link
Copy Markdown

@tsorya: new pull request created: #2997

Details

In response to this:

/cherrypick 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.

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

7 participants