Skip to content

OCPBUGS-86922: Retry transient API errors in pod-network-avalibility preparation#31253

Closed
mkowalski wants to merge 1 commit into
openshift:mainfrom
mkowalski:fix/pod-network-avalibility-retry-transient-errors
Closed

OCPBUGS-86922: Retry transient API errors in pod-network-avalibility preparation#31253
mkowalski wants to merge 1 commit into
openshift:mainfrom
mkowalski:fix/pod-network-avalibility-retry-transient-errors

Conversation

@mkowalski

@mkowalski mkowalski commented Jun 3, 2026

Copy link
Copy Markdown
Contributor

Problem

The pod-network-avalibility monitor's PrepareCollection phase creates several
Deployments, Services, and other Kubernetes resources via direct API calls with no
retry logic
. On jobs with heavy pre-test deployment activity (e.g. the metal
BGP-virt job that installs CNV + FRR right before the e2e suite), the API server
can be temporarily overloaded when the preparation runs, causing errors such as:

  • Post ".../deployments": unexpected EOF
  • Post ".../deployments": http2: client connection lost
  • etcdserver: request timed out

When the preparation fails, poller pods are never created. The subsequent collection
tests then also fail with no pods found for poller ..., producing false regressions
in Component Readiness.

Evidence

Sippy regression 41630
tracks this for periodic-ci-openshift-ovn-kubernetes-release-5.0-periodics-e2e-metal-ipi-ovn-bgp-virt-ipv4.
All 3 failing runs show the same pattern:

Run OFCIR host Prep time Error
May 27 cir-0614 77s etcdserver: request timed out
May 31 cir-0563 98s http2: client connection lost
Jun 1 cir-0536 81s unexpected EOF

Three different bare metal hosts — not a single bad machine.

Root cause: CNV installation finishes ~2 minutes before the e2e test starts.
At that point, 52 CNV pods + 52 OVN pods + 31 FRR pods are all starting
simultaneously (125 container start events in a 10-minute window). The API server
is under heavy load when the preparation phase tries to POST the poller Deployment.

Key evidence: Passing runs have the exact same background failure profile
(54 kubelet-container-restarts + 15 required-scc-annotation-checker = ~78 monitor
test failures). The only difference is whether pod-network-avalibility preparation
happens to succeed or not.

Fix

Wrap all Kubernetes Create() calls in PrepareCollection with a createWithRetry
helper that uses exponential backoff for transient API server errors:

  • Backoff: 2s base, factor 2.0, 5 steps, capped at 30s (~60s worst case total)
  • Retried errors: IsServerTimeout, IsTimeout, IsTooManyRequests,
    IsServiceUnavailable, IsInternalError, io.ErrUnexpectedEOF, net.OpError,
    http2: client connection lost, connection reset by peer,
    etcdserver: request timed out, unexpected EOF
  • Non-retryable errors (e.g. RBAC, validation) still fail immediately

No changes to test logic, assertions, or behavior when the API server is healthy.


🤖 This PR was created by OpenClaw on behalf of @mkowalski.

Summary by CodeRabbit

  • Bug Fixes
    • Improved reliability of cluster setup by adding automatic retries with exponential backoff for transient API and network failures during resource creation. Retries log warnings, stop on non-retryable errors, and surface timeout-wrapped errors when interrupted—reducing flakiness in test environment provisioning.

@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 openshift-ci Bot requested review from deads2k and p0lyn0mial June 3, 2026 07:55
@coderabbitai

coderabbitai Bot commented Jun 3, 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: 66bf42a9-3254-49c8-ae7f-d03b8f76fbb0

📥 Commits

Reviewing files that changed from the base of the PR and between a80291a and 295c051.

📒 Files selected for processing (1)
  • pkg/monitortests/network/disruptionpodnetwork/monitortest.go
🚧 Files skipped from review as they are similar to previous changes (1)
  • pkg/monitortests/network/disruptionpodnetwork/monitortest.go

Walkthrough

This PR adds exponential backoff and retry support for transient Kubernetes API errors encountered during network disruption test preparation. A new createWithRetry helper wraps all resource creation calls (namespace, RoleBinding, Deployments, Services) to automatically retry on API overload, timeout, and network errors while failing immediately on permanent errors.

Changes

Retry Support for Network Disruption Test Setup

Layer / File(s) Summary
Transient error detection and retry infrastructure
pkg/monitortests/network/disruptionpodnetwork/monitortest.go
Adds imports (errors, io, net, strings), implements isTransientAPIError using Kubernetes API timeout/overload predicates and network error heuristics (io.EOF, io.ErrUnexpectedEOF, *net.OpError, substring matching for HTTP/2 and etcd timeouts), defines retryBackoff with exponential backoff timings, and provides a generic createWithRetry(fn func() (T, error)) (T, error) wrapper that retries via wait.ExponentialBackoff and returns timeout-wrapped errors on exhaustion.
Resource creation with retries in PrepareCollection
pkg/monitortests/network/disruptionpodnetwork/monitortest.go
Wraps Kubernetes resource creation calls throughout PrepareCollection with createWithRetry: namespace and poller RoleBinding, pod/network and host/network poller Deployments, pod-network-target and host-network-target Deployments with Services, and service poller Deployments in loop, while preserving post-create sleeps and deployment image/environment updates.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Suggested labels

jira/valid-bug, ready-for-human-review

🚥 Pre-merge checks | ✅ 14 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 66.67% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (14 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'OCPBUGS-86922: Retry transient API errors in pod-network-avalibility preparation' directly describes the main change: adding retry logic for transient API errors during pod-network availability monitor preparation.
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 PR modifies only monitor test framework implementation (monitortest.go). No Ginkgo test definitions (It/Describe/Context/When) present.
Test Structure And Quality ✅ Passed The file is monitor test infrastructure, not a Ginkgo test file. It lacks test blocks, assertions, and Ginkgo patterns, making the custom check inapplicable.
Microshift Test Compatibility ✅ Passed No new Ginkgo e2e tests are added in this PR. The modified file is a monitor test utility implementing the MonitorTest interface, not an e2e test suite with Ginkgo test definitions.
Single Node Openshift (Sno) Test Compatibility ✅ Passed This PR modifies a monitor test (not an e2e test) and contains no Ginkgo test declarations. It only adds retry logic for Kubernetes resource creation in PrepareCollection.
Topology-Aware Scheduling Compatibility ✅ Passed This PR adds retry logic for transient API errors but does not modify deployment manifests or scheduling constraints. Existing affinity/tolerance configuration remains unchanged.
Ote Binary Stdout Contract ✅ Passed No stdout writes detected in process-level code. All logging uses klog (stderr) and fmt.Errorf creates error values. No fmt.Print, os.Stdout, or log.Print calls found.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed This PR modifies a monitor test, not a Ginkgo e2e test. The check applies only to new Ginkgo tests; no Ginkgo test declarations or IPv4/connectivity issues found.
No-Weak-Crypto ✅ Passed PR adds retry logic for Kubernetes API errors; no weak crypto (MD5/SHA1/DES/RC4/3DES/Blowfish/ECB), custom crypto implementations, or non-constant-time secret comparisons present.
Container-Privileges ✅ Passed Container privilege settings (privileged: true, runAsUser: 0, hostNetwork: true) found in new monitor test manifests are justified for network disruption testing of pod/host network connectivity.
No-Sensitive-Data-In-Logs ✅ Passed The new logging statement logs transient API errors (network timeouts, server unavailability) and deployment names—not passwords, tokens, API keys, PII, or credentials.

✏️ 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 commented Jun 3, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: mkowalski

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 Jun 3, 2026

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

🧹 Nitpick comments (1)
pkg/monitortests/network/disruptionpodnetwork/monitortest.go (1)

117-120: ⚡ Quick win

Narrow *net.OpError retry classification to timeout/reset/refused-like cases.

Treating all *net.OpError as transient can retry permanent misconfiguration errors unnecessarily. Prefer timeout/connection-reset/refused predicates (or utilnet helpers) to keep fail-fast behavior for non-transient failures.

🤖 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/monitortests/network/disruptionpodnetwork/monitortest.go` around lines
117 - 120, The current errors.As(err, &netErr) block treats any *net.OpError as
transient; update it to only return true for
timeout/connection-reset/refused-like cases by inspecting netErr (e.g.,
netErr.Timeout() or checking netErr.Err for syscall/temporary errors) instead of
blanket acceptance. Specifically, replace the unconditional return in the
errors.As(err, &netErr) branch with predicates such as netErr.Timeout(),
utilnet.IsConnectionRefused/IsNetworkTimeout equivalents, or
errors.Is(netErr.Err, syscall.ECONNRESET|syscall.ECONNREFUSED) (and/or check for
underlying *os.SyscallError) so only those transient conditions make the
function return true.
🤖 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.

Nitpick comments:
In `@pkg/monitortests/network/disruptionpodnetwork/monitortest.go`:
- Around line 117-120: The current errors.As(err, &netErr) block treats any
*net.OpError as transient; update it to only return true for
timeout/connection-reset/refused-like cases by inspecting netErr (e.g.,
netErr.Timeout() or checking netErr.Err for syscall/temporary errors) instead of
blanket acceptance. Specifically, replace the unconditional return in the
errors.As(err, &netErr) branch with predicates such as netErr.Timeout(),
utilnet.IsConnectionRefused/IsNetworkTimeout equivalents, or
errors.Is(netErr.Err, syscall.ECONNRESET|syscall.ECONNREFUSED) (and/or check for
underlying *os.SyscallError) so only those transient conditions make the
function return true.

ℹ️ Review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Enterprise

Run ID: a59505cc-395a-476e-b4d3-fffe66a0bf6b

📥 Commits

Reviewing files that changed from the base of the PR and between 05c80ba and a80291a.

📒 Files selected for processing (1)
  • pkg/monitortests/network/disruptionpodnetwork/monitortest.go

@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 Jun 3, 2026
…preparation

The pod-network-avalibility monitor's PrepareCollection phase creates
several Deployments, Services, and other resources via direct API calls
with no retry logic. On jobs with heavy pre-test deployment activity
(e.g. metal BGP-virt jobs installing CNV + FRR), the API server can be
temporarily overloaded when the preparation runs, causing errors such as:

  - unexpected EOF
  - http2: client connection lost
  - etcdserver: request timed out

When the preparation fails, poller pods are never created, causing the
collection tests to also fail with 'no pods found'. This produces false
regressions in Component Readiness (e.g. Sippy regression 41630).

Analysis of passing vs failing runs of the same job shows identical
cluster health profiles (~78 monitor test failures including 54
kubelet-container-restarts). The only difference is whether the
preparation API call lands during or after the post-deployment load
spike.

This commit wraps all Kubernetes Create calls in PrepareCollection with
a createWithRetry helper that uses exponential backoff (2s base, 5
retries, ~60s worst case) for transient API errors. Non-retryable errors
still fail immediately.

Signed-off-by: Mateusz Kowalski <mko@redhat.com>
@mkowalski mkowalski changed the title OCPBUGS: Retry transient API errors in pod-network-avalibility preparation OCPBUGS-86922: Retry transient API errors in pod-network-avalibility preparation Jun 3, 2026
@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 Jun 3, 2026
@openshift-ci-robot

Copy link
Copy Markdown

@mkowalski: This pull request references Jira Issue OCPBUGS-86922, which is invalid:

  • expected the bug to target the "5.0.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:

Problem

The pod-network-avalibility monitor's PrepareCollection phase creates several
Deployments, Services, and other Kubernetes resources via direct API calls with no
retry logic
. On jobs with heavy pre-test deployment activity (e.g. the metal
BGP-virt job that installs CNV + FRR right before the e2e suite), the API server
can be temporarily overloaded when the preparation runs, causing errors such as:

  • Post ".../deployments": unexpected EOF
  • Post ".../deployments": http2: client connection lost
  • etcdserver: request timed out

When the preparation fails, poller pods are never created. The subsequent collection
tests then also fail with no pods found for poller ..., producing false regressions
in Component Readiness.

Evidence

Sippy regression 41630
tracks this for periodic-ci-openshift-ovn-kubernetes-release-5.0-periodics-e2e-metal-ipi-ovn-bgp-virt-ipv4.
All 3 failing runs show the same pattern:

Run OFCIR host Prep time Error
May 27 cir-0614 77s etcdserver: request timed out
May 31 cir-0563 98s http2: client connection lost
Jun 1 cir-0536 81s unexpected EOF

Three different bare metal hosts — not a single bad machine.

Root cause: CNV installation finishes ~2 minutes before the e2e test starts.
At that point, 52 CNV pods + 52 OVN pods + 31 FRR pods are all starting
simultaneously (125 container start events in a 10-minute window). The API server
is under heavy load when the preparation phase tries to POST the poller Deployment.

Key evidence: Passing runs have the exact same background failure profile
(54 kubelet-container-restarts + 15 required-scc-annotation-checker = ~78 monitor
test failures). The only difference is whether pod-network-avalibility preparation
happens to succeed or not.

Fix

Wrap all Kubernetes Create() calls in PrepareCollection with a createWithRetry
helper that uses exponential backoff for transient API server errors:

  • Backoff: 2s base, factor 2.0, 5 steps, capped at 30s (~60s worst case total)
  • Retried errors: IsServerTimeout, IsTimeout, IsTooManyRequests,
    IsServiceUnavailable, IsInternalError, io.ErrUnexpectedEOF, net.OpError,
    http2: client connection lost, connection reset by peer,
    etcdserver: request timed out, unexpected EOF
  • Non-retryable errors (e.g. RBAC, validation) still fail immediately

No changes to test logic, assertions, or behavior when the API server is healthy.


🤖 This PR was created by OpenClaw on behalf of @mkowalski.

Summary by CodeRabbit

  • Bug Fixes
  • Enhanced the reliability of Kubernetes resource creation operations with automatic retry logic that handles transient failures, including API timeouts, overload conditions, and temporary network issues.

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.

@mkowalski mkowalski force-pushed the fix/pod-network-avalibility-retry-transient-errors branch from a80291a to 295c051 Compare June 3, 2026 08:15
@mkowalski

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 Jun 3, 2026
@openshift-ci-robot

Copy link
Copy Markdown

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

/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

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

Pull request overview

This PR improves the reliability of the pod-network-avalibility monitor’s PrepareCollection phase by adding retry-with-backoff behavior around Kubernetes API Create() calls, reducing flake due to transient apiserver/network failures under heavy cluster load.

Changes:

  • Add isTransientAPIError to classify transient apiserver/network failures worth retrying.
  • Add generic createWithRetry helper using exponential backoff and apply it to resource creation in PrepareCollection.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +143 to +147
err := wait.ExponentialBackoff(retryBackoff, func() (bool, error) {
var createErr error
result, createErr = fn()
if createErr == nil {
return true, nil

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.

@copilot, is this even relevant given this is running only on temporary clusters created for CI purposes?

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.

@copilot you there?

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.

The context.Background() usage isn't a regression — the original code already used context.Background() for all these Create() calls before this PR. This change only wraps them in retry logic without altering the context behavior.

That said, the broader point about context propagation: this code runs exclusively in CI on ephemeral clusters. If a job is aborted, the entire cluster gets destroyed — there's nothing to "gracefully cancel" into. The worst case is ~60s of retries against an API server that's about to be torn down anyway.

I could thread ctx through createWithRetry and switch to ExponentialBackoffWithContext, but it adds signature complexity for zero practical benefit in this context. Happy to do it if reviewers feel strongly, but I'd rather keep the helper simple.


🤖 This comment was posted by OpenClaw on behalf of @mkowalski.

@openshift-ci

openshift-ci Bot commented Jun 3, 2026

Copy link
Copy Markdown
Contributor

@mkowalski: 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-fips 295c051 link true /test e2e-aws-ovn-fips

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.

@mkowalski

Copy link
Copy Markdown
Contributor Author

/close

Ken's PR #31249 is better

@openshift-ci

openshift-ci Bot commented Jun 3, 2026

Copy link
Copy Markdown
Contributor

@mkowalski: Closed this PR.

Details

In response to this:

/close

Ken's PR #31249 is better

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

Copy link
Copy Markdown

@mkowalski: This pull request references Jira Issue OCPBUGS-86922. The bug has been updated to no longer refer to the pull request using the external bug tracker.

Details

In response to this:

Problem

The pod-network-avalibility monitor's PrepareCollection phase creates several
Deployments, Services, and other Kubernetes resources via direct API calls with no
retry logic
. On jobs with heavy pre-test deployment activity (e.g. the metal
BGP-virt job that installs CNV + FRR right before the e2e suite), the API server
can be temporarily overloaded when the preparation runs, causing errors such as:

  • Post ".../deployments": unexpected EOF
  • Post ".../deployments": http2: client connection lost
  • etcdserver: request timed out

When the preparation fails, poller pods are never created. The subsequent collection
tests then also fail with no pods found for poller ..., producing false regressions
in Component Readiness.

Evidence

Sippy regression 41630
tracks this for periodic-ci-openshift-ovn-kubernetes-release-5.0-periodics-e2e-metal-ipi-ovn-bgp-virt-ipv4.
All 3 failing runs show the same pattern:

Run OFCIR host Prep time Error
May 27 cir-0614 77s etcdserver: request timed out
May 31 cir-0563 98s http2: client connection lost
Jun 1 cir-0536 81s unexpected EOF

Three different bare metal hosts — not a single bad machine.

Root cause: CNV installation finishes ~2 minutes before the e2e test starts.
At that point, 52 CNV pods + 52 OVN pods + 31 FRR pods are all starting
simultaneously (125 container start events in a 10-minute window). The API server
is under heavy load when the preparation phase tries to POST the poller Deployment.

Key evidence: Passing runs have the exact same background failure profile
(54 kubelet-container-restarts + 15 required-scc-annotation-checker = ~78 monitor
test failures). The only difference is whether pod-network-avalibility preparation
happens to succeed or not.

Fix

Wrap all Kubernetes Create() calls in PrepareCollection with a createWithRetry
helper that uses exponential backoff for transient API server errors:

  • Backoff: 2s base, factor 2.0, 5 steps, capped at 30s (~60s worst case total)
  • Retried errors: IsServerTimeout, IsTimeout, IsTooManyRequests,
    IsServiceUnavailable, IsInternalError, io.ErrUnexpectedEOF, net.OpError,
    http2: client connection lost, connection reset by peer,
    etcdserver: request timed out, unexpected EOF
  • Non-retryable errors (e.g. RBAC, validation) still fail immediately

No changes to test logic, assertions, or behavior when the API server is healthy.


🤖 This PR was created by OpenClaw on behalf of @mkowalski.

Summary by CodeRabbit

  • Bug Fixes
  • Improved reliability of cluster setup by adding automatic retries with exponential backoff for transient API and network failures during resource creation. Retries log warnings, stop on non-retryable errors, and surface timeout-wrapped errors when interrupted—reducing flakiness in test environment provisioning.

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.

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

3 participants