Skip to content

OCPBUGS-82072 OCPBUGS-82077: fix: skip unused tests for two node#30998

Open
eggfoobar wants to merge 1 commit intoopenshift:mainfrom
eggfoobar:skip-baremetal-worker-checks-on-twonode
Open

OCPBUGS-82072 OCPBUGS-82077: fix: skip unused tests for two node#30998
eggfoobar wants to merge 1 commit intoopenshift:mainfrom
eggfoobar:skip-baremetal-worker-checks-on-twonode

Conversation

@eggfoobar
Copy link
Copy Markdown
Contributor

@eggfoobar eggfoobar commented Apr 10, 2026

currently for two node fencing we do not support extra workers, skipping these tests for DualReplica topology

Summary by CodeRabbit

  • Tests
    • Enhanced baremetal platform test infrastructure with caching of cluster configuration queries for improved efficiency.
    • Added automatic test skipping for two-node cluster deployments to prevent irrelevant test execution.
    • Updated health checks to dynamically adapt expected values based on cluster control plane topology.

@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

@openshift-ci-robot openshift-ci-robot added jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. labels Apr 10, 2026
@openshift-ci-robot
Copy link
Copy Markdown

@eggfoobar: This pull request references Jira Issue OCPBUGS-82072, which is invalid:

  • expected the bug to target the "4.22.0" version, but no target version was set

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

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

This pull request references Jira Issue OCPBUGS-82077, which is invalid:

  • expected the bug to target the "4.22.0" version, but no target version was set

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

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

Details

In response to this:

currently for two node fencing we do not support extra workers, skipping these tests for DualReplica topology

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 Apr 10, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Repository: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: 14f053cd-17c8-48c0-8c53-7f819865c414

📥 Commits

Reviewing files that changed from the base of the PR and between b9669ac and c1405f1.

📒 Files selected for processing (3)
  • test/extended/baremetal/common.go
  • test/extended/baremetal/high_availability.go
  • test/extended/baremetal/hosts.go
✅ Files skipped from review due to trivial changes (1)
  • test/extended/baremetal/hosts.go
🚧 Files skipped from review as they are similar to previous changes (1)
  • test/extended/baremetal/high_availability.go

Walkthrough

Added a process-wide, mutex-guarded cached helper clusterInfrastructure(oc) that caches successful Infrastructures().Get("cluster") calls; introduced skipIfTwoNode(oc) which skips tests when control-plane topology is two-node; updated baremetal tests and a health check to use the cached helper and topology check.

Changes

Cohort / File(s) Summary
Infrastructure Caching Helper
test/extended/baremetal/common.go
Added a mutex-protected, process-wide cached clusterInfrastructure(oc) that caches only successful Infrastructures().Get("cluster") results; updated skipIfNotBaremetal and skipIfUnsupportedPlatformOrConfig to use it; added skipIfTwoNode(oc) to skip tests when Status.ControlPlaneTopology == configv1.DualReplicaTopologyMode.
Baremetal Test Conditionals & Health Check
test/extended/baremetal/high_availability.go, test/extended/baremetal/hosts.go
checkMetal3DeploymentHealthy now derives expected baremetalhost.status.operationalStatus from the cluster topology (switches to "detached" for dual-replica topology); Serial baremetal tests BeforeEach now calls skipIfTwoNode(oc) in addition to existing skips.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

🚥 Pre-merge checks | ✅ 8 | ❌ 2

❌ Failed checks (2 warnings)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 40.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
Test Structure And Quality ⚠️ Warning Assertions lack meaningful failure messages in common.go lines 47, 56, 71 and high_availability.go line 154, violating the requirement for diagnostic context messages. Add meaningful failure messages to all error assertions, such as changing o.Expect(err).NotTo(o.HaveOccurred()) to include context messages.
✅ Passed checks (8 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The PR title clearly identifies the bug fix intent (skipping unused tests for two-node deployments) and references the relevant Jira tickets, directly reflecting the main changeset.
Stable And Deterministic Test Names ✅ Passed All test titles remain static with no dynamic values. The fmt.Sprintf() usage is in g.By() step descriptions, not test titles.
Microshift Test Compatibility ✅ Passed No new Ginkgo e2e test declarations were added; only existing tests were modified with new helper functions and skip logic for two-node deployments.
Single Node Openshift (Sno) Test Compatibility ✅ Passed PR does not introduce new Ginkgo e2e tests; only adds helper functions and modifies existing test protection logic.
Topology-Aware Scheduling Compatibility ✅ Passed PR modifies only test files and checks topology before skipping baremetal tests, following recommended patterns with no production scheduling issues.
Ote Binary Stdout Contract ✅ Passed The PR introduces new test helper functions and variables that do not produce any process-level stdout writes. All new functions are invoked exclusively within Ginkgo test blocks where stdout is intercepted by the framework.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed PR adds only helper functions and modifies existing test infrastructure; no new Ginkgo test blocks are introduced.

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

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

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

@openshift-ci openshift-ci bot requested review from deads2k and p0lyn0mial April 10, 2026 18:18
@eggfoobar
Copy link
Copy Markdown
Contributor Author

/jira refresh

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

@eggfoobar: This pull request references Jira Issue OCPBUGS-82072, 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 (4.22.0) matches configured target version for branch (4.22.0)
  • bug is in the state New, which is one of the valid states (NEW, ASSIGNED, POST)

This pull request references Jira Issue OCPBUGS-82077, 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 (4.22.0) matches configured target version for branch (4.22.0)
  • bug is in the state New, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

/jira refresh

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

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 (2)
test/extended/baremetal/hosts.go (1)

166-175: ⚠️ Potential issue | 🔴 Critical

Guard the cleanup against uninitialized helper.

When skipIfTwoNode(oc) skips the test, helper is never initialized. Ginkgo v2 still executes the AfterEach hook in this case, which calls helper.DeleteAllExtraWorkers() on a nil receiver—causing a panic. Since DeleteAllExtraWorkers doesn't guard against nil receivers, either:

  • Guard the cleanup: if helper != nil { helper.DeleteAllExtraWorkers() }, or
  • Initialize helper before skip checks.

This pattern also appears in test/extended/baremetal/high_availability.go.

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

In `@test/extended/baremetal/hosts.go` around lines 166 - 175, The AfterEach
cleanup calls helper.DeleteAllExtraWorkers() even when helper may be nil because
skipIfTwoNode(oc) can skip BeforeEach; update the AfterEach block to guard the
call (e.g., if helper != nil { helper.DeleteAllExtraWorkers() }) so
DeleteAllExtraWorkers is only invoked on an initialized NewBaremetalTestHelper,
and apply the same nil-check change to the corresponding AfterEach in
high_availability.go to prevent a panic.
test/extended/baremetal/high_availability.go (1)

40-49: ⚠️ Potential issue | 🟠 Major

Add nil-check guard in AfterEach cleanup.

DeleteAllExtraWorkers (helper.go:137) checks if b.extraWorkers == nil but does not guard against a nil receiver. When skipIfTwoNode(oc) skips the test before helper is assigned, Ginkgo v2 still executes the AfterEach block, causing helper.DeleteAllExtraWorkers() to panic on a nil receiver.

Guard the cleanup call:

g.AfterEach(func() {
	if helper != nil {
		helper.DeleteAllExtraWorkers()
	}
})
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@test/extended/baremetal/high_availability.go` around lines 40 - 49, The
AfterEach cleanup calls helper.DeleteAllExtraWorkers() without guarding against
helper being nil which can panic if Setup was skipped (e.g., due to
skipIfTwoNode); update the AfterEach to check the helper receiver before calling
DeleteAllExtraWorkers (i.e., ensure helper != nil) so DeleteAllExtraWorkers is
only invoked when NewBaremetalTestHelper successfully assigned helper and avoid
nil receiver panics from Ginkgo v2 executing AfterEach even when BeforeEach
skipped.
🤖 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 `@test/extended/baremetal/high_availability.go`:
- Around line 40-49: The AfterEach cleanup calls helper.DeleteAllExtraWorkers()
without guarding against helper being nil which can panic if Setup was skipped
(e.g., due to skipIfTwoNode); update the AfterEach to check the helper receiver
before calling DeleteAllExtraWorkers (i.e., ensure helper != nil) so
DeleteAllExtraWorkers is only invoked when NewBaremetalTestHelper successfully
assigned helper and avoid nil receiver panics from Ginkgo v2 executing AfterEach
even when BeforeEach skipped.

In `@test/extended/baremetal/hosts.go`:
- Around line 166-175: The AfterEach cleanup calls
helper.DeleteAllExtraWorkers() even when helper may be nil because
skipIfTwoNode(oc) can skip BeforeEach; update the AfterEach block to guard the
call (e.g., if helper != nil { helper.DeleteAllExtraWorkers() }) so
DeleteAllExtraWorkers is only invoked on an initialized NewBaremetalTestHelper,
and apply the same nil-check change to the corresponding AfterEach in
high_availability.go to prevent a panic.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: c2c27ace-b83b-4b86-a6db-63b0d16ca46e

📥 Commits

Reviewing files that changed from the base of the PR and between 3521349 and ddd95d6.

📒 Files selected for processing (3)
  • test/extended/baremetal/common.go
  • test/extended/baremetal/high_availability.go
  • test/extended/baremetal/hosts.go

@eggfoobar eggfoobar force-pushed the skip-baremetal-worker-checks-on-twonode branch from ddd95d6 to b9669ac Compare April 10, 2026 18:36
@eggfoobar
Copy link
Copy Markdown
Contributor Author

/payload-job
periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-techpreview

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Apr 10, 2026

@eggfoobar: trigger 3 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command

  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-techpreview-1of3
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-techpreview-2of3
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-techpreview-3of3

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/7df390b0-350c-11f1-8c63-6c1fd6462c30-0

@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

Scheduling tests matching the pipeline_run_if_changed or not excluded by pipeline_skip_if_only_changed parameters:
/test e2e-metal-ovn-two-node-arbiter
/test e2e-metal-ovn-two-node-fencing
/test e2e-metal-ovn-two-node-fencing-recovery

o.Expect(err).NotTo(o.HaveOccurred())

if infra.Status.ControlPlaneTopology == configv1.DualReplicaTopologyMode {
operationalStatus = "detached"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

I don't quite understand this part. We definitely don't expect BMHs to spontaneously get detached.

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.

Hey @dtantsur, so this is a unique state to two node with fencing, if we grab the result from our serial run for TNF lanes we set it up as detached

$ curl -sL https://gcsweb-ci.apps.ci.l2s4.p1.openshiftapps.com/gcs/test-platform-results/logs/openshift-origin-30998-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-techpreview-2of3/2042673644550754304/artifacts/e2e-metal-ovn-two-node-fencing-serial-techpreview/gather-extra/artifacts/inspect/namespaces/openshift-machine-api/metal3.io/baremetalhosts/ostest-master-0.yaml | yq '.status.operationalStatus'

detached

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.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Could a detailed explanation please be added here? It's already not great that we're going to see confused customers asking why BMH doesn't work for them... At the very least, let's add breadcrumps here.

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.

That's fair @dtantsur , I added the info as by statement so it's easier to see in our CI logs.

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.

@dtantsur if we ever support compute nodes, they won't be detached by default, so hopefully that's a richer value proposition. But yeah, we should be clear about this in the test.

@eggfoobar
Copy link
Copy Markdown
Contributor Author

/verified by https://prow.ci.openshift.org/view/gs/test-platform-results/logs/openshift-origin-30998-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-techpreview-1of3/2042673644018077696 and https://prow.ci.openshift.org/view/gs/test-platform-results/logs/openshift-origin-30998-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-techpreview-2of3/2042673644550754304

Verified by CI lanes on TNF clusters

1of3 shows the skip

: [sig-installer][Feature:baremetal][Serial] Baremetal platform should skip inspection when disabled by annotation [Suite:openshift/conformance/serial]

Reason: skip [github.com/openshift/origin/test/extended/baremetal/common.go:58]: This test does not apply to two-node

2of3 shows success

[sig-installer][Feature:baremetal][Serial] Baremetal platform should ensure [apigroup:config.openshift.io] cluster baremetal operator and metal3 deployment return back healthy after they are deleted [Suite:openshift/conformance/serial]

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

@eggfoobar: This PR has been marked as verified by https://prow.ci.openshift.org/view/gs/test-platform-results/logs/openshift-origin-30998-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-techpreview-1of3/2042673644018077696 and https://prow.ci.openshift.org/view/gs/test-platform-results/logs/openshift-origin-30998-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-techpreview-2of3/2042673644550754304.

Details

In response to this:

/verified by https://prow.ci.openshift.org/view/gs/test-platform-results/logs/openshift-origin-30998-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-techpreview-1of3/2042673644018077696 and https://prow.ci.openshift.org/view/gs/test-platform-results/logs/openshift-origin-30998-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-techpreview-2of3/2042673644550754304

Verified by CI lanes on TNF clusters

1of3 shows the skip

: [sig-installer][Feature:baremetal][Serial] Baremetal platform should skip inspection when disabled by annotation [Suite:openshift/conformance/serial]

Reason: skip [github.com/openshift/origin/test/extended/baremetal/common.go:58]: This test does not apply to two-node

2of3 shows success

[sig-installer][Feature:baremetal][Serial] Baremetal platform should ensure [apigroup:config.openshift.io] cluster baremetal operator and metal3 deployment return back healthy after they are deleted [Suite:openshift/conformance/serial]

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.

@jaypoulz
Copy link
Copy Markdown
Contributor

/lgtm

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

openshift-ci bot commented Apr 15, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: eggfoobar, jaypoulz
Once this PR has been reviewed and has the lgtm label, please assign ardaguclu for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found 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

@eggfoobar
Copy link
Copy Markdown
Contributor Author

/retest

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Apr 16, 2026

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

currently for two node fencing we do not support extra workers, skipping these tests for DualReplica topology
updated test to account for correct baremetal operator state during tnf deployments

Signed-off-by: ehila <ehila@redhat.com>
@eggfoobar eggfoobar force-pushed the skip-baremetal-worker-checks-on-twonode branch from b9669ac to c1405f1 Compare April 17, 2026 15:07
@openshift-ci openshift-ci bot removed the lgtm Indicates that a PR is ready to be merged. label Apr 17, 2026
@openshift-ci-robot openshift-ci-robot removed the verified Signifies that the PR passed pre-merge verification criteria label Apr 17, 2026
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Apr 17, 2026

New changes are detected. LGTM label has been removed.

@eggfoobar
Copy link
Copy Markdown
Contributor Author

/payload-job
periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial

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

@eggfoobar: This pull request references Jira Issue OCPBUGS-82072, which is invalid:

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

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

This pull request references Jira Issue OCPBUGS-82077, which is invalid:

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

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

Details

In response to this:

currently for two node fencing we do not support extra workers, skipping these tests for DualReplica topology

Summary by CodeRabbit

  • Tests
  • Enhanced baremetal platform test infrastructure with caching of cluster configuration queries for improved efficiency.
  • Added automatic test skipping for two-node cluster deployments to prevent irrelevant test execution.
  • Updated health checks to dynamically adapt expected values based on cluster control plane topology.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Apr 17, 2026

@eggfoobar: trigger 3 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command

  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-1of3
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-2of3
  • periodic-ci-openshift-release-main-nightly-4.22-e2e-metal-ovn-two-node-fencing-serial-3of3

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/5dbfd570-3a6f-11f1-818d-e8389f86f951-0

@eggfoobar
Copy link
Copy Markdown
Contributor Author

/jira refresh

@openshift-ci-robot
Copy link
Copy Markdown

@eggfoobar: This pull request references Jira Issue OCPBUGS-82072, which is invalid:

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

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

This pull request references Jira Issue OCPBUGS-82077, which is invalid:

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

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

Details

In response to this:

/jira refresh

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@eggfoobar
Copy link
Copy Markdown
Contributor Author

/jira refresh

@openshift-ci-robot
Copy link
Copy Markdown

@eggfoobar: This pull request references Jira Issue OCPBUGS-82072, which is valid.

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 POST, which is one of the valid states (NEW, ASSIGNED, POST)

This pull request references Jira Issue OCPBUGS-82077, which is invalid:

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

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

Details

In response to this:

/jira refresh

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@eggfoobar
Copy link
Copy Markdown
Contributor Author

/jira refresh

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

@eggfoobar: This pull request references Jira Issue OCPBUGS-82072, which is valid.

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 POST, which is one of the valid states (NEW, ASSIGNED, POST)

This pull request references Jira Issue OCPBUGS-82077, which is valid.

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 POST, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

/jira refresh

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@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

Scheduling tests matching the pipeline_run_if_changed or not excluded by pipeline_skip_if_only_changed parameters:
/test e2e-metal-ovn-two-node-arbiter
/test e2e-metal-ovn-two-node-fencing
/test e2e-metal-ovn-two-node-fencing-recovery

@eggfoobar
Copy link
Copy Markdown
Contributor Author

/retest

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

Labels

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.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants