Skip to content

OCPBUGS-85529:Fix IPv6 prefix in MultiNetworkPolicy test (/32 → /64)#31407

Open
weliang1 wants to merge 1 commit into
openshift:mainfrom
weliang1:fix-multinetworkpolicy-IPv6-Prefix
Open

OCPBUGS-85529:Fix IPv6 prefix in MultiNetworkPolicy test (/32 → /64)#31407
weliang1 wants to merge 1 commit into
openshift:mainfrom
weliang1:fix-multinetworkpolicy-IPv6-Prefix

Conversation

@weliang1

@weliang1 weliang1 commented Jul 21, 2026

Copy link
Copy Markdown
Contributor

Summary

Fixes a 3-year-old test bug causing the MultiNetworkPolicy IPv6 test to fail ~2-5% of the time.

Problem

The test uses /32 prefix for IPv6 addresses instead of the correct /64:

// WRONG ❌
g.Entry("IPv6", podAddressSet{
    A: mustParseIPAndMask("2001:db8::1/32"),  // Should be /64
    B: mustParseIPAndMask("2001:db8::2/32"),
    C: mustParseIPAndMask("2001:db8::3/32"),
}),

Root Cause

  • IPv6 /32 means "regional ISP allocation" (4.3 billion /64 subnets)
  • IPv6 /64 means "standard LAN subnet" (18 quintillion addresses)

With /32, the kernel believes the entire 2001:db8::/32 block is local, which confuses routing and prevents L2 adjacency detection. Pods cannot discover each other via NDP, so macvlan connectivity fails immediately.

The IPv4 test correctly uses /24 (LAN subnet) and has 100% pass rate.

Impact

Sippy data (release 5.0):

  • IPv6 test: 97.95% pass (3 failures / 146 runs)
  • IPv4 test: 100% pass (0 failures / 142 runs)

This is NOT a product bug — all components (Multus, Whereabouts, MultiNetworkPolicy, macvlan) work correctly. Only the test code is broken.

Fix

// CORRECT ✅
g.Entry("IPv6", podAddressSet{
    // Use /64 (standard IPv6 LAN subnet) - NOT /32 (regional allocation)
    // All three pods must be in the same L2 subnet for macvlan connectivity
    // Matches IPv4 pattern: /24 subnet contains multiple hosts
    A: mustParseIPAndMask("2001:db8::1/64"),
    B: mustParseIPAndMask("2001:db8::2/64"),
    C: mustParseIPAndMask("2001:db8::3/64"),
}),

Summary by CodeRabbit

  • Tests
    • Updated IPv6 secondary-network test configuration to use the correct /64 subnet mask.
    • Preserved existing pod IP addresses while improving network policy test coverage.

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

Pipeline controller notification
This repo is configured to use the pipeline controller. Second-stage tests will be triggered either automatically or after lgtm label is added, depending on the repository configuration. The pipeline controller will automatically detect which contexts are required and will utilize /test Prow commands to trigger the second stage.

For optional jobs, comment /test ? to see a list of all defined jobs. To trigger manually all jobs from second stage use /pipeline required command.

This repository is configured in: automatic mode

@coderabbitai

coderabbitai Bot commented Jul 21, 2026

Copy link
Copy Markdown

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Enterprise

Run ID: ff8cdf05-81ed-4470-8b8a-50b02792acfe

📥 Commits

Reviewing files that changed from the base of the PR and between 292b6a5 and 4ef1703.

📒 Files selected for processing (1)
  • test/extended/networking/multinetpolicy.go
🚧 Files skipped from review as they are similar to previous changes (1)
  • test/extended/networking/multinetpolicy.go

Walkthrough

The IPv6 multinetpolicy test now assigns /64 masks to pods A, B, and C in the macvlan address configuration.

Changes

IPv6 Multinetpolicy Test Inputs

Layer / File(s) Summary
Update IPv6 test address masks
test/extended/networking/multinetpolicy.go
IPv6 addresses for pods A, B, and C use /64 masks instead of /32 masks.

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

Suggested labels: jira/severity-important

Suggested reviewers: pperiyasamy

🚥 Pre-merge checks | ✅ 15
✅ Passed checks (15 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly matches the main change: fixing the MultiNetworkPolicy IPv6 test prefix from /32 to /64.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Stable And Deterministic Test Names ✅ Passed PASS: The only Ginkgo titles in the file are static strings; this PR changes IPv6 CIDR literals, not any It/Describe/Context/When names.
Test Structure And Quality ✅ Passed PR only changes IPv6 CIDRs. The test keeps one focused behavior, uses 30s Eventually timeouts, and matches repo assertion/style patterns.
Microshift Test Compatibility ✅ Passed The touched Ginkgo test is already tagged [apigroup:operator.openshift.io], so MicroShift auto-skips it; the PR only changes IPv6 CIDR masks.
Single Node Openshift (Sno) Test Compatibility ✅ Passed PASS: The test only requires one schedulable node, pins all pods to the same node, and has no multi-node or HA assumptions.
Topology-Aware Scheduling Compatibility ✅ Passed PASS: The PR only changes IPv6 CIDR literals in a test file; no manifests, controllers, replicas, anti-affinity, node selectors, or topology logic were added.
Ote Binary Stdout Contract ✅ Passed PR only changes IPv6 CIDR literals in a Ginkgo table; no process-level stdout/logging writes were added.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed PR only changes IPv6 masks from /32 to /64; test stays in-cluster with exec/curl and adds no new IPv4-only or external connectivity assumptions.
No-Weak-Crypto ✅ Passed Changed file only updates IPv6 subnet masks in a networking test; no crypto, secret comparison, or custom crypto code is present.
Container-Privileges ✅ Passed Only the MultiNetworkPolicy test IPv6 CIDRs changed; no privileged, host*, SYS_ADMIN, or allowPrivilegeEscalation settings were added.
No-Sensitive-Data-In-Logs ✅ Passed PASS: The only touched code changes IPv6 CIDR literals in a test; no new logging, secrets, PII, or customer data appear in the diff or file.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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

@openshift-ci

openshift-ci Bot commented Jul 21, 2026

Copy link
Copy Markdown
Contributor

@weliang1: The label(s) /label sig-network, /label backport-risk-low 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:

Summary

Fixes a 3-year-old test bug causing the MultiNetworkPolicy IPv6 test to fail ~2-5% of the time.

Problem

The test uses /32 prefix for IPv6 addresses instead of the correct /64:

// WRONG ❌
g.Entry("IPv6", podAddressSet{
   A: mustParseIPAndMask("2001:db8::1/32"),  // Should be /64
   B: mustParseIPAndMask("2001:db8::2/32"),
   C: mustParseIPAndMask("2001:db8::3/32"),
}),

Root Cause

  • IPv6 /32 means "regional ISP allocation" (4.3 billion /64 subnets)
  • IPv6 /64 means "standard LAN subnet" (18 quintillion addresses)

With /32, the kernel believes the entire 2001:db8::/32 block is local, which confuses routing and prevents L2 adjacency detection. Pods cannot discover each other via NDP, so macvlan connectivity fails immediately.

The IPv4 test correctly uses /24 (LAN subnet) and has 100% pass rate.

Impact

Sippy data (release 5.0):

  • IPv6 test: 97.95% pass (3 failures / 146 runs)
  • IPv4 test: 100% pass (0 failures / 142 runs)

This is NOT a product bug — all components (Multus, Whereabouts, MultiNetworkPolicy, macvlan) work correctly. Only the test code is broken.

Fix

// CORRECT ✅
g.Entry("IPv6", podAddressSet{
   // Use /64 (standard IPv6 LAN subnet) - NOT /32 (regional allocation)
   // All three pods must be in the same L2 subnet for macvlan connectivity
   // Matches IPv4 pattern: /24 subnet contains multiple hosts
   A: mustParseIPAndMask("2001:db8::1/64"),
   B: mustParseIPAndMask("2001:db8::2/64"),
   C: mustParseIPAndMask("2001:db8::3/64"),
}),

Expected Result

After this fix, the IPv6 test should achieve 100% pass rate matching the IPv4 variant.

References

Test Plan

  • Local verification: Change compiles
  • CI verification: Should see 100% pass rate in subsequent runs

/assign @zeeke
/cc @dcbw @pperiyasamy

/label sig-network
/label backport-risk-low

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
openshift-ci Bot requested a review from pperiyasamy July 21, 2026 18:26
@openshift-ci

openshift-ci Bot commented Jul 21, 2026

Copy link
Copy Markdown
Contributor

@weliang1: GitHub didn't allow me to request PR reviews from the following users: dcbw.

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

Details

In response to this:

Summary

Fixes a 3-year-old test bug causing the MultiNetworkPolicy IPv6 test to fail ~2-5% of the time.

Problem

The test uses /32 prefix for IPv6 addresses instead of the correct /64:

// WRONG ❌
g.Entry("IPv6", podAddressSet{
   A: mustParseIPAndMask("2001:db8::1/32"),  // Should be /64
   B: mustParseIPAndMask("2001:db8::2/32"),
   C: mustParseIPAndMask("2001:db8::3/32"),
}),

Root Cause

  • IPv6 /32 means "regional ISP allocation" (4.3 billion /64 subnets)
  • IPv6 /64 means "standard LAN subnet" (18 quintillion addresses)

With /32, the kernel believes the entire 2001:db8::/32 block is local, which confuses routing and prevents L2 adjacency detection. Pods cannot discover each other via NDP, so macvlan connectivity fails immediately.

The IPv4 test correctly uses /24 (LAN subnet) and has 100% pass rate.

Impact

Sippy data (release 5.0):

  • IPv6 test: 97.95% pass (3 failures / 146 runs)
  • IPv4 test: 100% pass (0 failures / 142 runs)

This is NOT a product bug — all components (Multus, Whereabouts, MultiNetworkPolicy, macvlan) work correctly. Only the test code is broken.

Fix

// CORRECT ✅
g.Entry("IPv6", podAddressSet{
   // Use /64 (standard IPv6 LAN subnet) - NOT /32 (regional allocation)
   // All three pods must be in the same L2 subnet for macvlan connectivity
   // Matches IPv4 pattern: /24 subnet contains multiple hosts
   A: mustParseIPAndMask("2001:db8::1/64"),
   B: mustParseIPAndMask("2001:db8::2/64"),
   C: mustParseIPAndMask("2001:db8::3/64"),
}),

Expected Result

After this fix, the IPv6 test should achieve 100% pass rate matching the IPv4 variant.

References

Test Plan

  • Local verification: Change compiles
  • CI verification: Should see 100% pass rate in subsequent runs

/assign @zeeke
/cc @dcbw @pperiyasamy

/label sig-network
/label backport-risk-low

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 openshift-ci Bot added the ready-for-human-review Indicates a PR has been reviewed by automated tools and is ready for human review label Jul 21, 2026
@weliang1 weliang1 changed the title Fix IPv6 prefix in MultiNetworkPolicy test (/32 → /64) OCPBUGS-85529:Fix IPv6 prefix in MultiNetworkPolicy test (/32 → /64) Jul 21, 2026
@openshift-ci-robot openshift-ci-robot added jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. labels Jul 21, 2026
@openshift-ci-robot

Copy link
Copy Markdown

@weliang1: This pull request references Jira Issue OCPBUGS-85529, 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 New, which is one of the valid states (NEW, ASSIGNED, POST)

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

Details

In response to this:

Summary

Fixes a 3-year-old test bug causing the MultiNetworkPolicy IPv6 test to fail ~2-5% of the time.

Problem

The test uses /32 prefix for IPv6 addresses instead of the correct /64:

// WRONG ❌
g.Entry("IPv6", podAddressSet{
   A: mustParseIPAndMask("2001:db8::1/32"),  // Should be /64
   B: mustParseIPAndMask("2001:db8::2/32"),
   C: mustParseIPAndMask("2001:db8::3/32"),
}),

Root Cause

  • IPv6 /32 means "regional ISP allocation" (4.3 billion /64 subnets)
  • IPv6 /64 means "standard LAN subnet" (18 quintillion addresses)

With /32, the kernel believes the entire 2001:db8::/32 block is local, which confuses routing and prevents L2 adjacency detection. Pods cannot discover each other via NDP, so macvlan connectivity fails immediately.

The IPv4 test correctly uses /24 (LAN subnet) and has 100% pass rate.

Impact

Sippy data (release 5.0):

  • IPv6 test: 97.95% pass (3 failures / 146 runs)
  • IPv4 test: 100% pass (0 failures / 142 runs)

This is NOT a product bug — all components (Multus, Whereabouts, MultiNetworkPolicy, macvlan) work correctly. Only the test code is broken.

Fix

// CORRECT ✅
g.Entry("IPv6", podAddressSet{
   // Use /64 (standard IPv6 LAN subnet) - NOT /32 (regional allocation)
   // All three pods must be in the same L2 subnet for macvlan connectivity
   // Matches IPv4 pattern: /24 subnet contains multiple hosts
   A: mustParseIPAndMask("2001:db8::1/64"),
   B: mustParseIPAndMask("2001:db8::2/64"),
   C: mustParseIPAndMask("2001:db8::3/64"),
}),

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

Scheduling required tests:
/test e2e-aws-csi
/test e2e-aws-ovn-fips
/test e2e-aws-ovn-microshift
/test e2e-aws-ovn-microshift-serial
/test e2e-aws-ovn-serial-1of2
/test e2e-aws-ovn-serial-2of2
/test e2e-gcp-csi
/test e2e-gcp-ovn
/test e2e-gcp-ovn-upgrade
/test e2e-metal-ipi-ovn-ipv6
/test e2e-vsphere-ovn
/test e2e-vsphere-ovn-upi

@weliang1

Copy link
Copy Markdown
Contributor Author

pre merge test passed.
/verified by @weliang1

@openshift-ci-robot openshift-ci-robot added the verified Signifies that the PR passed pre-merge verification criteria label Jul 21, 2026
@openshift-ci-robot

Copy link
Copy Markdown

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

Details

In response to this:

pre merge test passed.
/verified by @weliang1

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

openshift-trt Bot commented Jul 21, 2026

Copy link
Copy Markdown

Risk analysis has seen new tests most likely introduced by this PR.
Please ensure that new tests meet guidelines for naming and stability.

New tests seen in this PR at sha: 292b6a5

  • "Find the input image ocp-5.0-upi-installer and tag it into the pipeline" [Total: 2, Pass: 2, Fail: 0, Flake: 0]

@zeeke

zeeke commented Jul 22, 2026

Copy link
Copy Markdown
Contributor

/lgtm

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Jul 22, 2026
@weliang1

Copy link
Copy Markdown
Contributor Author

/retest-required

C: mustParseIPAndMask("2001:db8::3/32"),
// Use /64 (standard IPv6 LAN subnet) - NOT /32 (regional allocation)
// All three pods must be in the same L2 subnet for macvlan connectivity
// Matches IPv4 pattern: /24 subnet contains multiple hosts

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Someone reading this comment in the future is not going to understand why it says "NOT /32", so the comment becomes more confusing than helpful.

I'm not sure a comment is really helpful here. IPv6 subnets should basically always be /64, but if someone just copies the code from this test case then they'll get that automatically, and if they don't copy the code from this test case then they probably won't see any comment here...

// All three pods must be in the same L2 subnet for macvlan connectivity

That comment applies to the IPv4 test case too, so it should go before line 103. Except, it would be better to just redo the test so you can't screw that up... have just g.Entry("192.0.2.0/24", "2001:db8::/64") and then create pod IPs 1, 2, and 3 based on those subnets?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

@danwinship Agree, IPv6 subnets should basically always be /64. I will remove those comments to avoid the future confusion

The MultiNetworkPolicy IPv6 test has been failing ~2-5% of the time
since introduction in May 2023 due to incorrect IPv6 prefix length.

IPv6 addresses use /32 (regional allocation size) instead of /64
(standard LAN subnet). This causes L2 adjacency to fail, preventing
pod-to-pod communication over the macvlan secondary network.

Root cause:
- With /32: Kernel believes entire 2001:db8::/32 block is local
- Routing gets confused about L2 adjacency
- No Neighbor Discovery Protocol (NDP) attempted
- Connection fails immediately (0 ms timeout)

With /64 (this fix):
- All pods in same 2001:db8::/64 subnet
- NDP resolves MAC addresses
- Direct macvlan L2 communication succeeds
- Test proceeds to policy enforcement validation

The IPv4 variant uses correct /24 prefix and has 100% pass rate.

Sippy data (release 5.0):
- IPv6 test: 97.95% pass (3 failures / 146 runs)
- IPv4 test: 100% pass (0 failures / 142 runs)

References:
- Original PR (introduced bug): openshift#27795
- Restoration PR (restored with bug): openshift#27927
- Jira: OCPBUGS-6917, OCPBUGS-13788

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
@weliang1
weliang1 force-pushed the fix-multinetworkpolicy-IPv6-Prefix branch from 292b6a5 to 4ef1703 Compare July 23, 2026 22:12
@openshift-ci-robot openshift-ci-robot removed the verified Signifies that the PR passed pre-merge verification criteria label Jul 23, 2026
@openshift-ci openshift-ci Bot removed the lgtm Indicates that a PR is ready to be merged. label Jul 23, 2026
@openshift-ci-robot

Copy link
Copy Markdown

@weliang1: This pull request references Jira Issue OCPBUGS-85529, 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 New, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

Summary

Fixes a 3-year-old test bug causing the MultiNetworkPolicy IPv6 test to fail ~2-5% of the time.

Problem

The test uses /32 prefix for IPv6 addresses instead of the correct /64:

// WRONG ❌
g.Entry("IPv6", podAddressSet{
   A: mustParseIPAndMask("2001:db8::1/32"),  // Should be /64
   B: mustParseIPAndMask("2001:db8::2/32"),
   C: mustParseIPAndMask("2001:db8::3/32"),
}),

Root Cause

  • IPv6 /32 means "regional ISP allocation" (4.3 billion /64 subnets)
  • IPv6 /64 means "standard LAN subnet" (18 quintillion addresses)

With /32, the kernel believes the entire 2001:db8::/32 block is local, which confuses routing and prevents L2 adjacency detection. Pods cannot discover each other via NDP, so macvlan connectivity fails immediately.

The IPv4 test correctly uses /24 (LAN subnet) and has 100% pass rate.

Impact

Sippy data (release 5.0):

  • IPv6 test: 97.95% pass (3 failures / 146 runs)
  • IPv4 test: 100% pass (0 failures / 142 runs)

This is NOT a product bug — all components (Multus, Whereabouts, MultiNetworkPolicy, macvlan) work correctly. Only the test code is broken.

Fix

// CORRECT ✅
g.Entry("IPv6", podAddressSet{
   // Use /64 (standard IPv6 LAN subnet) - NOT /32 (regional allocation)
   // All three pods must be in the same L2 subnet for macvlan connectivity
   // Matches IPv4 pattern: /24 subnet contains multiple hosts
   A: mustParseIPAndMask("2001:db8::1/64"),
   B: mustParseIPAndMask("2001:db8::2/64"),
   C: mustParseIPAndMask("2001:db8::3/64"),
}),

Summary by CodeRabbit

  • Tests
  • Updated IPv6 secondary-network test configuration to use the correct /64 subnet mask.
  • Preserved existing pod IP addresses while improving network policy test coverage.

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

Scheduling required tests:
/test e2e-aws-csi
/test e2e-aws-ovn-fips
/test e2e-aws-ovn-microshift
/test e2e-aws-ovn-microshift-serial
/test e2e-aws-ovn-serial-1of2
/test e2e-aws-ovn-serial-2of2
/test e2e-gcp-csi
/test e2e-gcp-ovn
/test e2e-gcp-ovn-upgrade
/test e2e-metal-ipi-ovn-ipv6
/test e2e-vsphere-ovn
/test e2e-vsphere-ovn-upi

@openshift-ci

openshift-ci Bot commented Jul 24, 2026

Copy link
Copy Markdown
Contributor

@weliang1: 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-gcp-ovn-upgrade 4ef1703 link true /test e2e-gcp-ovn-upgrade
ci/prow/e2e-gcp-ovn 4ef1703 link true /test e2e-gcp-ovn
ci/prow/e2e-gcp-csi 4ef1703 link true /test e2e-gcp-csi

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.

@danwinship

Copy link
Copy Markdown
Contributor

/lgtm

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Jul 24, 2026
@openshift-ci

openshift-ci Bot commented Jul 24, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: danwinship, weliang1, zeeke

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 Jul 24, 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-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. lgtm Indicates that a PR is ready to be merged. ready-for-human-review Indicates a PR has been reviewed by automated tools and is ready for human review

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants