Skip to content

OCPBUGS-85628: Fix OCP e2e flakiness for oc image info#31176

Open
YamunadeviShanmugam wants to merge 5 commits into
openshift:mainfrom
YamunadeviShanmugam:fix-e2e-image-info
Open

OCPBUGS-85628: Fix OCP e2e flakiness for oc image info#31176
YamunadeviShanmugam wants to merge 5 commits into
openshift:mainfrom
YamunadeviShanmugam:fix-e2e-image-info

Conversation

@YamunadeviShanmugam
Copy link
Copy Markdown
Contributor

@YamunadeviShanmugam YamunadeviShanmugam commented May 14, 2026

The original test was failing because it relied on a hardcoded OpenShift image from an external registry which in turn caused failures. To fix this, the test is made dynamic by having it pull the actual payload image used by the cluster instead of a static string.

  Running Suite:  - /home/yshanmug/Documents/dev/forks/origin
  ===========================================================
  Random Seed: 1778754465 - will randomize all specs

  Will run 1 of 1 specs
  ------------------------------
  [sig-imageregistry][Feature:ImageInfo] Image info should display information about images [apigroup:image.openshift.io]
  github.com/openshift/origin/test/extended/images/info.go:29
    STEP: Creating a kubernetes client @ 05/14/26 15:57:46.813
  I0514 15:57:46.814111 3178848 discovery.go:214] Invalidating discovery information
  I0514 15:57:47.200100 3178848 client.go:293] configPath is now "/tmp/configfile2536781646"
  I0514 15:57:47.200127 3178848 client.go:368] The user is now "e2e-test-image-info-jgklq-user"
  I0514 15:57:47.200134 3178848 client.go:370] Creating project "e2e-test-image-info-jgklq"
  I0514 15:57:47.316662 3178848 client.go:378] Waiting on permissions in project "e2e-test-image-info-jgklq" ...
  I0514 15:57:47.423918 3178848 client.go:407] DeploymentConfig capability is enabled, adding 'deployer' SA to the list of default SAs
  I0514 15:57:47.450521 3178848 client.go:422] Waiting for ServiceAccount "default" to be provisioned...
  I0514 15:57:47.601850 3178848 client.go:422] Waiting for ServiceAccount "builder" to be provisioned...
  I0514 15:57:47.754459 3178848 client.go:422] Waiting for ServiceAccount "deployer" to be provisioned...
  I0514 15:57:47.907339 3178848 client.go:432] Waiting for RoleBinding "system:image-pullers" to be provisioned...
  I0514 15:57:47.936330 3178848 client.go:432] Waiting for RoleBinding "system:image-builders" to be provisioned...
  I0514 15:57:47.966591 3178848 client.go:432] Waiting for RoleBinding "system:deployers" to be provisioned...
  I0514 15:57:48.366676 3178848 client.go:469] Project "e2e-test-image-info-jgklq" has been fully provisioned.
  I0514 15:57:54.728997 3178848 client.go:689] Deleted {user.openshift.io/v1, Resource=users  e2e-test-image-info-jgklq-user}, err: <nil>
  I0514 15:57:54.758023 3178848 client.go:689] Deleted {oauth.openshift.io/v1, Resource=oauthclients  e2e-client-e2e-test-image-info-jgklq}, err: <nil>
  I0514 15:57:54.788177 3178848 client.go:689] Deleted {oauth.openshift.io/v1, Resource=oauthaccesstokens  sha256~3iSnmAnpnzBop07pu1EH9PkbCgEn1wv1ksK3DZEfLOM}, err: <nil>
    STEP: Destroying namespace "e2e-test-image-info-jgklq" for this suite. @ 05/14/26 15:57:54.788
  • [8.013 seconds]
  ------------------------------

  Ran 1 of 1 Specs in 8.013 seconds
  SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[
  {
    "name": "[sig-imageregistry][Feature:ImageInfo] Image info should display information about images [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]",
    "lifecycle": "blocking",
    "duration": 8013,
    "startTime": "2026-05-14 10:27:46.804783 UTC",
    "endTime": "2026-05-14 10:27:54.817784 UTC",
    "result": "passed",

  }

Summary by CodeRabbit

  • Tests
    • Enhanced image-validation tests to detect the current cluster payload image, verify both human-readable and JSON outputs, handle registry authentication/certificate setup, defer cleanup when applicable, and skip gracefully when external outbound access is restricted.

Note: Internal testing improvements only; no user-facing changes.

@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/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. labels May 14, 2026
@openshift-ci-robot
Copy link
Copy Markdown

@YamunadeviShanmugam: This pull request references Jira Issue OCPBUGS-85628, 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:

The original test was failing because it relied on a hardcoded OpenShift image from an external registry which in turn caused failures. To fix this, the test is made dynamic by having it pull the actual payload image used by the cluster instead of a static string.

 Running Suite:  - /home/yshanmug/Documents/dev/forks/origin
 ===========================================================
 Random Seed: 1778754465 - will randomize all specs

 Will run 1 of 1 specs
 ------------------------------
 [sig-imageregistry][Feature:ImageInfo] Image info should display information about images [apigroup:image.openshift.io]
 github.com/openshift/origin/test/extended/images/info.go:29
   STEP: Creating a kubernetes client @ 05/14/26 15:57:46.813
 I0514 15:57:46.814111 3178848 discovery.go:214] Invalidating discovery information
 I0514 15:57:47.200100 3178848 client.go:293] configPath is now "/tmp/configfile2536781646"
 I0514 15:57:47.200127 3178848 client.go:368] The user is now "e2e-test-image-info-jgklq-user"
 I0514 15:57:47.200134 3178848 client.go:370] Creating project "e2e-test-image-info-jgklq"
 I0514 15:57:47.316662 3178848 client.go:378] Waiting on permissions in project "e2e-test-image-info-jgklq" ...
 I0514 15:57:47.423918 3178848 client.go:407] DeploymentConfig capability is enabled, adding 'deployer' SA to the list of default SAs
 I0514 15:57:47.450521 3178848 client.go:422] Waiting for ServiceAccount "default" to be provisioned...
 I0514 15:57:47.601850 3178848 client.go:422] Waiting for ServiceAccount "builder" to be provisioned...
 I0514 15:57:47.754459 3178848 client.go:422] Waiting for ServiceAccount "deployer" to be provisioned...
 I0514 15:57:47.907339 3178848 client.go:432] Waiting for RoleBinding "system:image-pullers" to be provisioned...
 I0514 15:57:47.936330 3178848 client.go:432] Waiting for RoleBinding "system:image-builders" to be provisioned...
 I0514 15:57:47.966591 3178848 client.go:432] Waiting for RoleBinding "system:deployers" to be provisioned...
 I0514 15:57:48.366676 3178848 client.go:469] Project "e2e-test-image-info-jgklq" has been fully provisioned.
 I0514 15:57:54.728997 3178848 client.go:689] Deleted {user.openshift.io/v1, Resource=users  e2e-test-image-info-jgklq-user}, err: <nil>
 I0514 15:57:54.758023 3178848 client.go:689] Deleted {oauth.openshift.io/v1, Resource=oauthclients  e2e-client-e2e-test-image-info-jgklq}, err: <nil>
 I0514 15:57:54.788177 3178848 client.go:689] Deleted {oauth.openshift.io/v1, Resource=oauthaccesstokens  sha256~3iSnmAnpnzBop07pu1EH9PkbCgEn1wv1ksK3DZEfLOM}, err: <nil>
   STEP: Destroying namespace "e2e-test-image-info-jgklq" for this suite. @ 05/14/26 15:57:54.788
 • [8.013 seconds]
 ------------------------------

 Ran 1 of 1 Specs in 8.013 seconds
 SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[
 {
   "name": "[sig-imageregistry][Feature:ImageInfo] Image info should display information about images [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]",
   "lifecycle": "blocking",
   "duration": 8013,
   "startTime": "2026-05-14 10:27:46.804783 UTC",
   "endTime": "2026-05-14 10:27:54.817784 UTC",
   "result": "passed",
   "output": "  STEP: Creating a kubernetes client @ 05/14/26 15:57:46.813\nI0514 15:57:47.200100 3178848 client.go:293] configPath is now \"/tmp/configfile2536781646\"\nI0514 15:57:47.200127 3178848 client.go:368] The user is now \"e2e-test-image-info-jgklq-user\"\nI0514 15:57:47.200134 3178848 client.go:370] Creating project \"e2e-test-image-info-jgklq\"\nI0514 15:57:47.316662 3178848 client.go:378] Waiting on permissions in project \"e2e-test-image-info-jgklq\" ...\nI0514 15:57:47.423918 3178848 client.go:407] DeploymentConfig capability is enabled, adding 'deployer' SA to the list of default SAs\nI0514 15:57:47.450521 3178848 client.go:422] Waiting for ServiceAccount \"default\" to be provisioned...\nI0514 15:57:47.601850 3178848 client.go:422] Waiting for ServiceAccount \"builder\" to be provisioned...\nI0514 15:57:47.754459 3178848 client.go:422] Waiting for ServiceAccount \"deployer\" to be provisioned...\nI0514 15:57:47.907339 3178848 client.go:432] Waiting for RoleBinding \"system:image-pullers\" to be provisioned...\nI0514 15:57:47.936330 3178848 client.go:432] Waiting for RoleBinding \"system:image-builders\" to be provisioned...\nI0514 15:57:47.966591 3178848 client.go:432] Waiting for RoleBinding \"system:deployers\" to be provisioned...\nI0514 15:57:48.366676 3178848 client.go:469] Project \"e2e-test-image-info-jgklq\" has been fully provisioned.\nI0514 15:57:54.728997 3178848 client.go:689] Deleted {user.openshift.io/v1, Resource=users  e2e-test-image-info-jgklq-user}, err: \u003cnil\u003e\nI0514 15:57:54.758023 3178848 client.go:689] Deleted {oauth.openshift.io/v1, Resource=oauthclients  e2e-client-e2e-test-image-info-jgklq}, err: \u003cnil\u003e\nI0514 15:57:54.788177 3178848 client.go:689] Deleted {oauth.openshift.io/v1, Resource=oauthaccesstokens  sha256~3iSnmAnpnzBop07pu1EH9PkbCgEn1wv1ksK3DZEfLOM}, err: \u003cnil\u003e\n  STEP: Destroying namespace \"e2e-test-image-info-jgklq\" for this suite. @ 05/14/26 15:57:54.788\n",
   "error": "    STEP: Creating a kubernetes client @ 05/14/26 15:57:46.813\n  I0514 15:57:46.814111 3178848 discovery.go:214] Invalidating discovery information\n  I0514 15:57:47.200100 3178848 client.go:293] configPath is now \"/tmp/configfile2536781646\"\n  I0514 15:57:47.200127 3178848 client.go:368] The user is now \"e2e-test-image-info-jgklq-user\"\n  I0514 15:57:47.200134 3178848 client.go:370] Creating project \"e2e-test-image-info-jgklq\"\n  I0514 15:57:47.316662 3178848 client.go:378] Waiting on permissions in project \"e2e-test-image-info-jgklq\" ...\n  I0514 15:57:47.423918 3178848 client.go:407] DeploymentConfig capability is enabled, adding 'deployer' SA to the list of default SAs\n  I0514 15:57:47.450521 3178848 client.go:422] Waiting for ServiceAccount \"default\" to be provisioned...\n  I0514 15:57:47.601850 3178848 client.go:422] Waiting for ServiceAccount \"builder\" to be provisioned...\n  I0514 15:57:47.754459 3178848 client.go:422] Waiting for ServiceAccount \"deployer\" to be provisioned...\n  I0514 15:57:47.907339 3178848 client.go:432] Waiting for RoleBinding \"system:image-pullers\" to be provisioned...\n  I0514 15:57:47.936330 3178848 client.go:432] Waiting for RoleBinding \"system:image-builders\" to be provisioned...\n  I0514 15:57:47.966591 3178848 client.go:432] Waiting for RoleBinding \"system:deployers\" to be provisioned...\n  I0514 15:57:48.366676 3178848 client.go:469] Project \"e2e-test-image-info-jgklq\" has been fully provisioned.\n  I0514 15:57:54.728997 3178848 client.go:689] Deleted {user.openshift.io/v1, Resource=users  e2e-test-image-info-jgklq-user}, err: \u003cnil\u003e\n  I0514 15:57:54.758023 3178848 client.go:689] Deleted {oauth.openshift.io/v1, Resource=oauthclients  e2e-client-e2e-test-image-info-jgklq}, err: \u003cnil\u003e\n  I0514 15:57:54.788177 3178848 client.go:689] Deleted {oauth.openshift.io/v1, Resource=oauthaccesstokens  sha256~3iSnmAnpnzBop07pu1EH9PkbCgEn1wv1ksK3DZEfLOM}, err: \u003cnil\u003e\n    STEP: Destroying namespace \"e2e-test-image-info-jgklq\" for this suite. @ 05/14/26 15:57:54.788\n"
 }

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 May 14, 2026

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: 82582f4f-e423-4ab7-880d-b15864484e0f

📥 Commits

Reviewing files that changed from the base of the PR and between e3b8792 and 1591e24.

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

Walkthrough

The test now reads the cluster payload image from clusterversion (.status.desired.image), trims and validates it, prepares registry auth/CA material, runs oc image info (human-readable and, when auth is available, JSON), checks for expected digest and name output, and skips on HyperShift when external outbound access is required.

Changes

Dynamic Payload Image Test Refactor

Layer / File(s) Summary
Imports and payload discovery
test/extended/images/info.go
Removed heredoc import, added strings. Test queries clusterversion for .status.desired.image, trims whitespace, and asserts a non-empty payload image string.
Registry auth preparation & cleanup
test/extended/images/info.go
Calls exutil.PrepareImagePullSecretAndCABundle to prepare pull-secret and CA bundle; defers cleanup when applicable.
oc image info execution and validation
test/extended/images/info.go
Runs oc image info <payloadImage> with registry args; on failure detects HyperShift to decide skip vs. fail. Validates human-readable output contains Digest: and matches a Name: regex. When auth prep succeeds, also runs oc image info -o json and asserts JSON contains "digest": and a matching "name": field.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Suggested labels

verified

Suggested reviewers

  • p0lyn0mial
  • sjenning
🚥 Pre-merge checks | ✅ 9 | ❌ 3

❌ Failed checks (3 warnings)

Check name Status Explanation Resolution
Test Structure And Quality ⚠️ Warning Only 3 of 10 assertions include messages (70% missing). Single It block tests multiple unrelated behaviors. No BeforeEach block for reusable setup. Add messages to all assertions for clarity. Split single It block into separate tests. Use BeforeEach for common setup and namespace assignment.
Microshift Test Compatibility ⚠️ Warning Test accesses ClusterVersion (config.openshift.io/v1), unavailable on MicroShift. Lacks [apigroup:config.openshift.io] tag, [Skipped:MicroShift] label, or exutil.IsMicroShiftCluster() check. Add [apigroup:config.openshift.io] tag to test name OR add [Skipped:MicroShift] label OR add exutil.IsMicroShiftCluster() check with g.Skip() to protect test from MicroShift execution.
Ipv6 And Disconnected Network Test Compatibility ⚠️ Warning Test requires external registry connectivity via 'oc image info' but lacks [Skipped:Disconnected] tag. Will fail in disconnected environments. Add [Skipped:Disconnected] to test name: g.It("should display information about images [apigroup:image.openshift.io][Skipped:Disconnected]", func() {...}). Or use conditional skip for disconnected clusters.
✅ Passed checks (9 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly identifies the bug being fixed (OCPBUGS-85628) and succinctly describes the main change: addressing flakiness in the oc image info e2e test by making it use dynamic cluster payload images instead of hardcoded external registry references.
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 Test titles are stable and deterministic with no dynamic content. Titles use static, descriptive strings. Dynamic values (payloadImage) are properly used in test body, not titles.
Single Node Openshift (Sno) Test Compatibility ✅ Passed Test does not make multi-node or HA cluster assumptions. It only runs 'oc image info' CLI commands to inspect image metadata—no pod scheduling, node operations, or multi-node communication patterns.
Topology-Aware Scheduling Compatibility ✅ Passed Changes are limited to test/extended/images/info.go, a test file. No deployment manifests, operator code, or scheduling constraints are introduced. The check applies only to production code changes.
Ote Binary Stdout Contract ✅ Passed All code is scoped within Ginkgo test blocks where stdout is intercepted. No fmt.Print, klog, or stdout calls in process-level code.

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

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

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

@openshift-ci openshift-ci Bot requested review from flavianmissi and p0lyn0mial May 14, 2026 10:30
@openshift-ci-robot
Copy link
Copy Markdown

@YamunadeviShanmugam: This pull request references Jira Issue OCPBUGS-85628, 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:

The original test was failing because it relied on a hardcoded OpenShift image from an external registry which in turn caused failures. To fix this, the test is made dynamic by having it pull the actual payload image used by the cluster instead of a static string.

 Running Suite:  - /home/yshanmug/Documents/dev/forks/origin
 ===========================================================
 Random Seed: 1778754465 - will randomize all specs

 Will run 1 of 1 specs
 ------------------------------
 [sig-imageregistry][Feature:ImageInfo] Image info should display information about images [apigroup:image.openshift.io]
 github.com/openshift/origin/test/extended/images/info.go:29
   STEP: Creating a kubernetes client @ 05/14/26 15:57:46.813
 I0514 15:57:46.814111 3178848 discovery.go:214] Invalidating discovery information
 I0514 15:57:47.200100 3178848 client.go:293] configPath is now "/tmp/configfile2536781646"
 I0514 15:57:47.200127 3178848 client.go:368] The user is now "e2e-test-image-info-jgklq-user"
 I0514 15:57:47.200134 3178848 client.go:370] Creating project "e2e-test-image-info-jgklq"
 I0514 15:57:47.316662 3178848 client.go:378] Waiting on permissions in project "e2e-test-image-info-jgklq" ...
 I0514 15:57:47.423918 3178848 client.go:407] DeploymentConfig capability is enabled, adding 'deployer' SA to the list of default SAs
 I0514 15:57:47.450521 3178848 client.go:422] Waiting for ServiceAccount "default" to be provisioned...
 I0514 15:57:47.601850 3178848 client.go:422] Waiting for ServiceAccount "builder" to be provisioned...
 I0514 15:57:47.754459 3178848 client.go:422] Waiting for ServiceAccount "deployer" to be provisioned...
 I0514 15:57:47.907339 3178848 client.go:432] Waiting for RoleBinding "system:image-pullers" to be provisioned...
 I0514 15:57:47.936330 3178848 client.go:432] Waiting for RoleBinding "system:image-builders" to be provisioned...
 I0514 15:57:47.966591 3178848 client.go:432] Waiting for RoleBinding "system:deployers" to be provisioned...
 I0514 15:57:48.366676 3178848 client.go:469] Project "e2e-test-image-info-jgklq" has been fully provisioned.
 I0514 15:57:54.728997 3178848 client.go:689] Deleted {user.openshift.io/v1, Resource=users  e2e-test-image-info-jgklq-user}, err: <nil>
 I0514 15:57:54.758023 3178848 client.go:689] Deleted {oauth.openshift.io/v1, Resource=oauthclients  e2e-client-e2e-test-image-info-jgklq}, err: <nil>
 I0514 15:57:54.788177 3178848 client.go:689] Deleted {oauth.openshift.io/v1, Resource=oauthaccesstokens  sha256~3iSnmAnpnzBop07pu1EH9PkbCgEn1wv1ksK3DZEfLOM}, err: <nil>
   STEP: Destroying namespace "e2e-test-image-info-jgklq" for this suite. @ 05/14/26 15:57:54.788
 • [8.013 seconds]
 ------------------------------

 Ran 1 of 1 Specs in 8.013 seconds
 SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped
[
 {
   "name": "[sig-imageregistry][Feature:ImageInfo] Image info should display information about images [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]",
   "lifecycle": "blocking",
   "duration": 8013,
   "startTime": "2026-05-14 10:27:46.804783 UTC",
   "endTime": "2026-05-14 10:27:54.817784 UTC",
   "result": "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.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@test/extended/images/info.go`:
- Around line 42-56: The current logic assigns prepErr to err and then runs the
HyperShift check, causing "oc image info failed..." to be reported even when
PrepareImagePullSecretAndCABundle failed; update the flow in
test/extended/images/info.go so that PrepareImagePullSecretAndCABundle errors
are handled separately: if prepErr != nil then assert/report prepErr directly
(e.g., o.Expect(prepErr).NotTo(o.HaveOccurred()) or fail with the prepErr
message) or, if you intend to allow prep failures only on HyperShift, perform
exutil.IsHypershift(ctx, oc.AdminConfigClient()) and call g.Skip() on HyperShift
before asserting prepErr; only perform the
oc.AsAdmin().Run("image").Args(...).Output() call and the subsequent HyperShift
check when PrepareImagePullSecretAndCABundle succeeded (prepErr == nil), and use
the existing isHyperShift logic to skip or assert the actual oc image info
error.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Enterprise

Run ID: dd06303b-b7d4-4120-91ae-e0ceefeaa428

📥 Commits

Reviewing files that changed from the base of the PR and between d41fea2 and df066a4.

📒 Files selected for processing (1)
  • test/extended/images/info.go

Comment thread test/extended/images/info.go Outdated
@openshift-merge-bot openshift-merge-bot Bot added the ready-for-human-review Indicates a PR has been reviewed by automated tools and is ready for human review label May 14, 2026
@gangwgr
Copy link
Copy Markdown
Contributor

gangwgr commented May 14, 2026

/lgtm

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

openshift-ci Bot commented May 14, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: gangwgr, YamunadeviShanmugam
Once this PR has been reviewed and has the lgtm label, please assign flavianmissi 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

@gangwgr
Copy link
Copy Markdown
Contributor

gangwgr commented May 14, 2026

/hold
wait for ci to pass

@openshift-ci openshift-ci Bot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label May 14, 2026
@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-aws-ovn-image-registry

Comment thread test/extended/images/info.go Outdated
@openshift-ci openshift-ci Bot removed the lgtm Indicates that a PR is ready to be merged. label May 14, 2026
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 14, 2026

New changes are detected. LGTM label has been removed.

@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-aws-ovn-image-registry

@YamunadeviShanmugam
Copy link
Copy Markdown
Contributor Author

/retest

2 similar comments
@YamunadeviShanmugam
Copy link
Copy Markdown
Contributor Author

/retest

@YamunadeviShanmugam
Copy link
Copy Markdown
Contributor Author

/retest

@YamunadeviShanmugam
Copy link
Copy Markdown
Contributor Author

/retest-required

@openshift-trt
Copy link
Copy Markdown

openshift-trt Bot commented May 15, 2026

Job Failure Risk Analysis for sha: 1591e24

Job Name Failure Risk
pull-ci-openshift-origin-main-e2e-gcp-ovn Medium
[Monitor:legacy-cvo-invariants][bz-Insights Operator] clusteroperator/insights should not change condition/Degraded
This test has passed 87.50% of 8 runs on release 5.0 [Architecture:amd64 FeatureSet:default Installer:ipi JobTier:standard Network:ovn NetworkStack:ipv4 OS:rhcos9 Owner:eng Platform:gcp Procedure:none SecurityMode:default Topology:ha Upgrade:micro] in the last week.
---
[Monitor:legacy-cvo-invariants][bz-Insights Operator] clusteroperator/insights should not change condition/Available
This test has passed 87.50% of 8 runs on release 5.0 [Architecture:amd64 FeatureSet:default Installer:ipi JobTier:standard Network:ovn NetworkStack:ipv4 OS:rhcos9 Owner:eng Platform:gcp Procedure:none SecurityMode:default Topology:ha Upgrade:micro] in the last week.

@YamunadeviShanmugam
Copy link
Copy Markdown
Contributor Author

/retest

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 17, 2026

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

@ardaguclu
Copy link
Copy Markdown
Member

/hold
I think this test inherently needs to work against external image registry to test the actual functionality. It is better to understand the reason of flake first.

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

Labels

do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. 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. 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.

5 participants