Skip to content

SPLAT-2713: Update AWS CCM e2e test module version#476

Open
mfbonfigli wants to merge 3 commits into
openshift:mainfrom
mfbonfigli:SPLAT-2713_update-cccmo-tests
Open

SPLAT-2713: Update AWS CCM e2e test module version#476
mfbonfigli wants to merge 3 commits into
openshift:mainfrom
mfbonfigli:SPLAT-2713_update-cccmo-tests

Conversation

@mfbonfigli

@mfbonfigli mfbonfigli commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

What

Updates the AWS CCM e2e tests module version to the latest version, including refreshing the vendored dependencies for the test binary.

Additionally fixes an unrelated unit test that was causing test failures by wrapping it in an Eventually statement.

Why

The purpose is to pull down the latest test changes which include new e2e tests for the BYO Security Groups feature for AWS Network Load Balancers. The feature has already been merged in upstream and downstream AWS CCM. Updating the test dependency will ensure these e2e tests will run in downstream constantly ensuring the feature works as expected.

Summary by CodeRabbit

Summary

  • Chores
    • Updated AWS cloud provider end-to-end test dependencies to the latest available version.
  • Tests
    • Improved the BareMetal “no ConfigMaps created” check by using retrying verification, ensuring reconciliation settles before confirming none exist.
    • Enhanced AWS region handling in E2E runs: validates region values from environment variables and can fall back to the cluster’s Infrastructure-reported region when needed.

Updates the AWS CCM e2e tests module version to the latest
version which includes changes like the addition of e2e tests
for the BYO Security Group for AWS Network Load Balancer feat.
@openshift-ci

openshift-ci Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

Skipping CI for Draft Pull Request.
If you want CI signal for your change, please convert it to an actual PR.
You can still manually trigger a test run with /test all

@openshift-ci-robot

openshift-ci-robot commented Jun 19, 2026

Copy link
Copy Markdown

@mfbonfigli: This pull request references SPLAT-2713 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 story to target the "5.0.0" version, but no target version was set.

Details

In response to this:

What

Updates the AWS CCM e2e tests module version to the latest version, including refreshing the vendored dependencies for the test binary.

Why

The purpose is to pull down the latest test changes which include new e2e tests for the BYO Security Groups feature for AWS Network Load Balancers. The feature has already been merged in upstream and downstream AWS CCM. Updating the test dependency will ensure these e2e tests will run in downstream constantly ensuring the feature works as expected.

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

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Jun 19, 2026
@openshift-ci openshift-ci Bot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jun 19, 2026
@coderabbitai

coderabbitai Bot commented Jun 19, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@mfbonfigli, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 1 minute and 37 seconds. Learn how PR review limits work.

Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file).

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits.

🚦 How do rate limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate.

For paid Pro and Pro+ PR reviews, CodeRabbit uses rolling per-developer review limits. Reviews become available again as older review attempts age out of the rolling limit window.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Enterprise

Run ID: 1cdf63ac-b977-47f9-b646-948234ddcd67

📥 Commits

Reviewing files that changed from the base of the PR and between 412554f and 8dc4ed6.

📒 Files selected for processing (3)
  • openshift-tests/ccm-aws-tests/e2e/aws/helper.go
  • openshift-tests/ccm-aws-tests/e2e/common/helper.go
  • openshift-tests/ccm-aws-tests/main.go

Walkthrough

This PR consolidates AWS region validation and discovery into shared helpers, refactors the AWS test helper and main entrypoint to use those shared helpers with validation and fallback logic, makes a controller test assertion more robust with retry logic, and updates an e2e test dependency.

Changes

AWS Region Discovery and Validation Refactoring

Layer / File(s) Summary
Shared region validation and discovery helpers
openshift-tests/ccm-aws-tests/e2e/common/helper.go
Introduces exported AWSRegionPattern regexp for AWS region name validation across partitions and ISO formats, and adds GetRegionFromInfrastructure(ctx) to retrieve the AWS region from the cluster Infrastructure resource with nil-checks and error wrapping.
AWS test helper region loading refactored
openshift-tests/ccm-aws-tests/e2e/aws/helper.go
Removes local region discovery and validation logic from loadAWSConfig and rewires it to call common.GetRegionFromInfrastructure(ctx) and use common.AWSRegionPattern for validation; removes unused regexp and metav1 imports.
Main entrypoint region discovery with validation and fallback
openshift-tests/ccm-aws-tests/main.go
getRegionFromEnv now validates candidate region environment variables using common.AWSRegionPattern, and falls back to common.GetRegionFromInfrastructure when no valid env value is found, with appropriate logging and error handling.

Test Robustness and Dependency Update

Layer / File(s) Summary
Bare-metal controller test assertion with retry
pkg/controllers/cloud_config_sync_controller_test.go
The "On BareMetal platform" test assertion changes from an immediate length check to an Eventually block that waits for ConfigMaps to reach zero count, allowing reconciliation effects to settle before verification.
Cloud-provider-aws e2e test dependency bump
openshift-tests/ccm-aws-tests/go.mod
The k8s.io/cloud-provider-aws/tests/e2e required version is updated to pseudo-version v0.0.0-20260606003233-c34d66ed717a.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~22 minutes

Possibly related PRs

Suggested labels

lgtm, verified

Suggested reviewers

  • nrb
  • RadekManak
🚥 Pre-merge checks | ✅ 12 | ❌ 3

❌ Failed checks (3 warnings)

Check name Status Explanation Resolution
Test Structure And Quality ⚠️ Warning The modified test (BareMetal platform test, lines 606,611) lacks meaningful assertion failure messages per custom check requirement 4, despite properly implementing timeouts (requirement 3). Add assertion messages to the modified test: Line 606 should add message like "reconciliation should not error", and line 611 should add "no ConfigMaps should be created for BareMetal platform".
Microshift Test Compatibility ⚠️ Warning New e2e tests in loadbalancer.go use config.openshift.io/v1 APIs (FeatureGate, Infrastructure) unavailable on MicroShift. Tests lack [apigroup:config.openshift.io] tag or [Skipped:MicroShift] label... Add [apigroup:config.openshift.io] tag to each It() test name or wrap tests in MicroShift platform check using exutil.IsMicroShiftCluster()
Ipv6 And Disconnected Network Test Compatibility ⚠️ Warning The PR adds new AWS CCM e2e tests (BYO Security Groups for NLB) with IPv4 assumptions: the inClusterTestReachableHTTP function constructs URLs using fmt.Sprintf("http://%s:%d/...", target, port) wh... IPv6 and disconnected network compatibility notice: This test may contain IPv4 assumptions or external connectivity requirements that will fail in IPv6-only disconnected environments. Please verify your test works on IPv6 by running...
✅ Passed checks (12 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: updating the AWS CCM e2e test module version, which is reflected by the go.mod dependency update and subsequent code refactoring.
Docstring Coverage ✅ Passed Docstring coverage is 80.00% which is sufficient. The required threshold is 80.00%.
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 All test names in the PR are stable and deterministic. The new e2e test suite uses static constants in fmt.Sprintf for the Describe block, and all It() test titles are static strings with no dynami...
Single Node Openshift (Sno) Test Compatibility ✅ Passed New e2e tests added don't explicitly require multi-node assumptions: no node counting, anti-affinity, cross-node scheduling, or node failover logic. Pods can run on SNO's single node. Tests lack SN...
Topology-Aware Scheduling Compatibility ✅ Passed PR contains only test code/dependencies changes; no deployment manifests, operator code, pod affinity rules, or topology-aware scheduling constraints are introduced.
Ote Binary Stdout Contract ✅ Passed New process-level code uses logrus (writes to stderr by default) for all logging. Helper functions appropriately use framework.Logf for test-level logging. No stdout violations found.
No-Weak-Crypto ✅ Passed No weak cryptographic algorithms (MD5, SHA1, DES, RC4, 3DES, Blowfish, ECB), custom crypto implementations, or non-constant-time comparisons detected in the PR code changes.
Container-Privileges ✅ Passed PR contains no container/Kubernetes manifest changes with privileged settings. All 5 modified files are Go source/dependency files without container security context definitions, hostNetwork, hostP...
No-Sensitive-Data-In-Logs ✅ Passed No sensitive data (passwords, tokens, API keys, PII, session IDs, internal hostnames) is logged in any of the modified files. Logging includes only AWS regions, resource IDs, and generic error mess...

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

@mfbonfigli mfbonfigli marked this pull request as ready for review June 19, 2026 09:25
@openshift-ci openshift-ci Bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jun 19, 2026
@openshift-ci openshift-ci Bot requested review from miyadav and racheljpg June 19, 2026 09:26
@mfbonfigli

Copy link
Copy Markdown
Contributor Author

/retest

1 similar comment
@mfbonfigli

Copy link
Copy Markdown
Contributor Author

/retest

@openshift-ci

openshift-ci Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

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

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (1)
pkg/controllers/cloud_config_sync_controller_test.go (1)

607-611: ⚡ Quick win

Add descriptive failure message to assertion.

The assertion lacks a custom failure message. Adding one would improve debuggability when the test fails by clearly explaining what condition was expected.

📝 Proposed fix to add failure message
 Eventually(func() int {
 	allCMs := &corev1.ConfigMapList{}
 	Expect(cl.List(ctx, allCMs, &client.ListOptions{Namespace: targetNamespaceName})).To(Succeed())
 	return len(allCMs.Items)
-}).Should(BeZero())
+}, 10*time.Second, 100*time.Millisecond).Should(BeZero(), "Expected no ConfigMaps to be created for BareMetal platform")

As per coding guidelines: "Assertions should include meaningful failure messages."

🤖 Prompt for 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.

In `@pkg/controllers/cloud_config_sync_controller_test.go` around lines 607 - 611,
The Eventually assertion that checks the ConfigMap count is zero lacks a custom
failure message, which makes debugging harder when the test fails. Add a
descriptive failure message to the Eventually().Should(BeZero()) assertion chain
to explain what condition is expected. Use the appropriate Gomega method (such
as WithMessage or similar) to attach a clear error message that will be
displayed if the assertion fails, explaining that all ConfigMaps in the target
namespace should be cleaned up or deleted.

Source: Coding guidelines

🤖 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 `@pkg/controllers/cloud_config_sync_controller_test.go`:
- Around line 607-611: The Eventually block that lists ConfigMaps in the
targetNamespace lacks an explicit timeout parameter, which can cause the test to
hang indefinitely if the reconciler misbehaves. Add a timeout argument to the
Eventually function call (something like Eventually(func(), timeout.Duration))
to ensure the test fails gracefully if ConfigMaps are not cleaned up within a
reasonable timeframe. Include both the timeout and optionally a polling interval
to comply with Ginkgo testing guidelines for cluster-interacting operations.

---

Nitpick comments:
In `@pkg/controllers/cloud_config_sync_controller_test.go`:
- Around line 607-611: The Eventually assertion that checks the ConfigMap count
is zero lacks a custom failure message, which makes debugging harder when the
test fails. Add a descriptive failure message to the
Eventually().Should(BeZero()) assertion chain to explain what condition is
expected. Use the appropriate Gomega method (such as WithMessage or similar) to
attach a clear error message that will be displayed if the assertion fails,
explaining that all ConfigMaps in the target namespace should be cleaned up or
deleted.
🪄 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: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 9c0dba32-c5a4-4248-b5a6-ca9e439cf1a3

📥 Commits

Reviewing files that changed from the base of the PR and between 7409854 and 9190933.

📒 Files selected for processing (1)
  • pkg/controllers/cloud_config_sync_controller_test.go

Comment thread pkg/controllers/cloud_config_sync_controller_test.go Outdated
@mfbonfigli

Copy link
Copy Markdown
Contributor Author

/retest

@mfbonfigli

Copy link
Copy Markdown
Contributor Author

/test e2e-aws-ovn-upgrade

@mtulio mtulio left a comment

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.

Overall LGTM. I see two commits with the same purpose: fixing the unit test on pkg/controllers/cloud_config_sync_controller_test.go.

Would you mind squashing those?

@mtulio

mtulio commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

/test ?

@openshift-ci

openshift-ci Bot commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

@mtulio: The following commands are available to trigger required jobs:

/test e2e-aws-ovn
/test e2e-aws-ovn-upgrade
/test fmt
/test images
/test lint
/test okd-scos-images
/test unit
/test vendor
/test verify-deps
/test vet

The following commands are available to trigger optional jobs:

/test e2e-aws-ovn-techpreview
/test e2e-azure-manual-oidc
/test e2e-azure-ovn
/test e2e-azure-ovn-upgrade
/test e2e-gcp-ovn
/test e2e-gcp-ovn-upgrade
/test e2e-ibmcloud-ovn
/test e2e-nutanix-ovn
/test e2e-openstack-ovn
/test e2e-vsphere-ovn
/test level0-clusterinfra-azure-ipi-proxy-tests
/test okd-scos-e2e-aws-ovn
/test regression-clusterinfra-vsphere-ipi-ccm

Use /test all to run the following jobs that were automatically triggered:

pull-ci-openshift-cluster-cloud-controller-manager-operator-main-e2e-aws-ovn
pull-ci-openshift-cluster-cloud-controller-manager-operator-main-e2e-aws-ovn-upgrade
pull-ci-openshift-cluster-cloud-controller-manager-operator-main-fmt
pull-ci-openshift-cluster-cloud-controller-manager-operator-main-images
pull-ci-openshift-cluster-cloud-controller-manager-operator-main-level0-clusterinfra-azure-ipi-proxy-tests
pull-ci-openshift-cluster-cloud-controller-manager-operator-main-lint
pull-ci-openshift-cluster-cloud-controller-manager-operator-main-okd-scos-images
pull-ci-openshift-cluster-cloud-controller-manager-operator-main-unit
pull-ci-openshift-cluster-cloud-controller-manager-operator-main-vendor
pull-ci-openshift-cluster-cloud-controller-manager-operator-main-verify-deps
pull-ci-openshift-cluster-cloud-controller-manager-operator-main-vet
Details

In response to this:

/test ?

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.

@mtulio

mtulio commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

/payload-job periodic-ci-openshift-hypershift-release-5.0-periodics-e2e-aws-ovn-conformance-ccm-techpreview

@openshift-ci

openshift-ci Bot commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

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

Wrap the ConfigMap list assertion in Eventually with an explicit 2-minute
timeout and 5-second polling interval. The previous synchronous assertion
was racy — the envtest API server cache could still reflect a ConfigMap
from a prior test's reconcile loop.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
@mfbonfigli mfbonfigli force-pushed the SPLAT-2713_update-cccmo-tests branch from 9f8e009 to 971e635 Compare June 22, 2026 14:48
@mfbonfigli

Copy link
Copy Markdown
Contributor Author

Thanks @mtulio , just squashed the two and pushed.

@mtulio

mtulio commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

/payload-job periodic-ci-openshift-hypershift-release-4.23-periodics-e2e-aws-ovn-conformance-ccm-techpreview

@openshift-ci

openshift-ci Bot commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

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

@mtulio

mtulio commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

/payload-job periodic-ci-openshift-hypershift-release-5.0-periodics-e2e-aws-ovn-conformance-techpreview

@openshift-ci

openshift-ci Bot commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

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

  • periodic-ci-openshift-hypershift-release-5.0-periodics-e2e-aws-ovn-conformance-techpreview

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/ef6b3000-6e59-11f1-84f5-8fd4e61631a8-0

@mtulio

mtulio commented Jun 22, 2026

Copy link
Copy Markdown
Contributor

LGTM Feel free to drop hold label when you verify it on CI job results (including hypershift periodic).
/hold
/lgtm

@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 Jun 22, 2026
@openshift-ci openshift-ci Bot added lgtm Indicates that a PR is ready to be merged. and removed lgtm Indicates that a PR is ready to be merged. labels Jun 22, 2026
@openshift-ci

openshift-ci Bot commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

New changes are detected. LGTM label has been removed.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🤖 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 `@openshift-tests/ccm-aws-tests/main.go`:
- Around line 141-142: The os.Setenv call for setting AWS_REGION is not checking
for error returns before returning the region value as success. Modify the code
to capture the error return value from os.Setenv when setting the AWS_REGION
environment variable, check if an error occurred, and handle it appropriately
(either by returning the error from the function or handling it in a way that
prevents reporting success when the environment variable was not actually set).
Apply this same fix to all other instances where os.Setenv is called without
error checking, including the occurrence around line 152.
- Around line 146-149: The call to common.GetRegionFromInfrastructure() on line
146 uses context.Background() which lacks a timeout, allowing the API call to
block indefinitely if the Infrastructure endpoint stalls and causing test suite
hangs. Replace context.Background() with a context that includes a reasonable
timeout (such as 30 seconds) using context.WithTimeout() to ensure the
Infrastructure API lookup completes or fails promptly without blocking test
initialization.
🪄 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: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: a04d4cfe-4a36-43a7-aa48-f42f7ddd37a7

📥 Commits

Reviewing files that changed from the base of the PR and between 971e635 and 412554f.

📒 Files selected for processing (3)
  • openshift-tests/ccm-aws-tests/e2e/aws/helper.go
  • openshift-tests/ccm-aws-tests/e2e/common/helper.go
  • openshift-tests/ccm-aws-tests/main.go

Comment thread openshift-tests/ccm-aws-tests/main.go Outdated
Comment thread openshift-tests/ccm-aws-tests/main.go Outdated
@mfbonfigli mfbonfigli force-pushed the SPLAT-2713_update-cccmo-tests branch from 412554f to c2f6e08 Compare June 23, 2026 10:32
@mfbonfigli

Copy link
Copy Markdown
Contributor Author

/payload-job periodic-ci-openshift-hypershift-release-5.0-periodics-e2e-aws-ovn-conformance-techpreview

@openshift-ci

openshift-ci Bot commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

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

  • periodic-ci-openshift-hypershift-release-5.0-periodics-e2e-aws-ovn-conformance-techpreview

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/1764e290-6ef0-11f1-9674-502bea550e73-0

Updates the logic to set the AWS_REGION env var validating before
if it is a valid region string. Additionally in case all paths fail
also tries to extract it from the cluster.
@mfbonfigli mfbonfigli force-pushed the SPLAT-2713_update-cccmo-tests branch from c2f6e08 to 8dc4ed6 Compare June 23, 2026 13:17
@mfbonfigli

Copy link
Copy Markdown
Contributor Author

/payload-job periodic-ci-openshift-hypershift-release-5.0-periodics-e2e-aws-ovn-conformance-techpreview

@openshift-ci

openshift-ci Bot commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

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

  • periodic-ci-openshift-hypershift-release-5.0-periodics-e2e-aws-ovn-conformance-techpreview

See details on https://pr-payload-tests.ci.openshift.org/runs/ci/ebc3c2e0-6f09-11f1-9c31-c4face463719-0

@openshift-ci

openshift-ci Bot commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

@mfbonfigli: The following test 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 8dc4ed6 link true /test e2e-aws-ovn

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.

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

3 participants