Skip to content

OCPBUGS-65896: controller/workload: Rework Progressing condition#2203

Open
tchap wants to merge 1 commit into
openshift:masterfrom
tchap:pr2-progressing-rework
Open

OCPBUGS-65896: controller/workload: Rework Progressing condition#2203
tchap wants to merge 1 commit into
openshift:masterfrom
tchap:pr2-progressing-rework

Conversation

@tchap
Copy link
Copy Markdown
Contributor

@tchap tchap commented May 6, 2026

Replace the generation-based progressing check and the 15-minute v1helpers.IsUpdatingTooLong timer with the deployment controller's native ProgressDeadlineExceeded condition. This avoids false Progressing=True signals on scaling operations (where generation changes but no rollout occurs) and uses a more accurate stall detection mechanism.

Extract progressing condition logic into a new DeploymentProgressingCondition helper in pkg/apps/deployment, along with exported HasDeploymentProgressed and HasDeploymentTimedOutProgressing helpers. The degraded condition now reports ProgressDeadlineExceeded when the deployment has timed out, instead of the generic UnavailablePod reason.

Testing PR for CAO

Notes for Review

I published the helpers in a separate package because there are multiple other components that will be able to use them later on. I also reviewed the test cases as much as I could. Claude says all combinations are covered.

I also made sure not to touch Degraded in this PR, it's gonna come next.

Summary by CodeRabbit

  • Bug Fixes

    • Improved deployment progress detection, timeout messaging, and handling of stalled rollouts (including default-replica scenarios).
    • More accurate workload status transitions and degradation handling during rollouts and timeouts.
  • Refactor

    • Centralized progression logic so controllers use a single progression-driven path and trigger updates at the appropriate revision.
  • Tests

    • Added extensive tests for deployment progression, timeouts, rollout scenarios, revision/generation mismatches, and pod-listing error paths.

@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 6, 2026
@openshift-ci-robot
Copy link
Copy Markdown

@tchap: This pull request references Jira Issue OCPBUGS-65896, 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)

No GitHub users were found matching the public email listed for the QA contact in Jira (ksiddiqu@redhat.com), skipping review request.

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

Details

In response to this:

Replace the generation-based progressing check and the 15-minute v1helpers.IsUpdatingTooLong timer with the deployment controller's native ProgressDeadlineExceeded condition. This avoids false Progressing=True signals on scaling operations (where generation changes but no rollout occurs) and uses a more accurate stall detection mechanism.

Extract progressing condition logic into a new
DeploymentProgressingCondition helper in pkg/apps/deployment, along with exported HasDeploymentProgressed and
HasDeploymentTimedOutProgressing helpers. The degraded condition now reports ProgressDeadlineExceeded when the deployment has timed out, instead of the generic UnavailablePod reason.

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 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 May 6, 2026
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 6, 2026

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

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 6, 2026

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

Walkthrough

Adds deployment progression helpers that derive operator Progressing conditions, detect progress and timeouts, integrates them into the workload controller replacing generation-based checks, and expands tests and fake pod listers to cover rollout, timeout, and pod-listing error scenarios.

Changes

Deployment progression + workload integration

Layer / File(s) Summary
Data Shape / API
pkg/apps/deployment/progressing.go
New public functions: DeploymentProgressingCondition(deployment *appsv1.Deployment) operatorv1.OperatorCondition, HasDeploymentProgressed(status appsv1.DeploymentStatus) bool, HasDeploymentTimedOutProgressing(status appsv1.DeploymentStatus) (string, bool) to produce an Operator Progressing condition, determine progress, and format timeout messages.
Core Implementation / Controller
pkg/operator/apiserver/controller/workload/workload.go
Controller now calls DeploymentProgressingCondition and progression helpers to compute workloadIsBeingUpdated and workloadAtHighestGeneration; removed local progression helper and adjusted version-update, progression, and degraded handling accordingly.
Unit Tests — progressing
pkg/apps/deployment/progressing_test.go
Adds tests for progression helpers covering active rollout, completion, timeout, and default cases with message and status assertions.
Unit Tests — controller
pkg/operator/apiserver/controller/workload/workload_test.go
Expanded/refactored workload tests: added scenarios (progress-deadline-exceeded, generation mismatch, scaling, partially available rollouts, all-updated-not-available), updated expected messages to revision wording, and adjusted container waiting reasons.
Test Helpers / Wiring
pkg/operator/apiserver/controller/workload/...
Fake pod listers extended with an error field; test harness wired to pass scenario.podListErr and scenario.pods so tests exercise pod-listing error paths and propagate list/get errors.

Sequence Diagram(s)

sequenceDiagram
    participant Controller
    participant KubeAPI as "Kubernetes API (Deployment)"
    participant PodLister as "Pod Lister"
    participant OperatorStatus as "OperatorStatus"

    Controller->>KubeAPI: Get Deployment object / status
    KubeAPI-->>Controller: DeploymentStatus (replicas, conditions, revision, observedGeneration)
    Controller->>PodLister: List pods for the Deployment
    PodLister-->>Controller: Pod list or error
    alt Pod list error
        Controller->>OperatorStatus: Mark Degraded / Progressing False (pod-list error)
    else Normal path
        Controller->>Controller: DeploymentProgressingCondition(deployment)
        Controller->>Controller: HasDeploymentProgressed(status) / HasDeploymentTimedOutProgressing(status)
        alt Timed out
            Controller->>OperatorStatus: Set Progressing False (timeout) and Degraded
        else Still progressing
            Controller->>OperatorStatus: Set Progressing True (updating) or Progressing False (as expected)
        end
    end
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~45 minutes

🚥 Pre-merge checks | ✅ 11 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 42.86% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (11 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and specifically identifies the main change: reworking the Progressing condition in the workload controller, with the issue reference OCPBUGS-65896 providing additional context.
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 Check not applicable. PR uses standard Go testing, not Ginkgo framework. This check targets Ginkgo test titles (It, Describe, Context, When). All test names are stable.
Test Structure And Quality ✅ Passed Custom check targets Ginkgo test code. PR contains only standard Go tests (testing.T). Check not applicable to this PR.
Microshift Test Compatibility ✅ Passed No Ginkgo e2e tests were added. The PR only includes standard Go unit tests using testing.T in progressing_test.go and modifications to workload_test.go. The custom check is not applicable.
Single Node Openshift (Sno) Test Compatibility ✅ Passed PR adds unit tests using standard Go testing package, not Ginkgo e2e tests. SNO compatibility check applies only to Ginkgo tests (It(), Describe(), Context(), When()), making it not applicable.
Topology-Aware Scheduling Compatibility ✅ Passed PR adds deployment progression logic without introducing topology-breaking scheduling constraints. Changes only evaluate deployment status conditions.
Ote Binary Stdout Contract ✅ Passed No module-level stdout writes found. All fmt/log/klog calls are within functions. No main(), init(), TestMain(), BeforeSuite(), or top-level initializers that write to stdout detected.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed No Ginkgo e2e tests found. PR contains only standard Go unit tests using testing.T pattern. IPv6/disconnected check applies only to Ginkgo e2e tests.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.

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

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.

🧹 Nitpick comments (2)
pkg/apps/deployment/progressing.go (1)

15-43: 💤 Low value

Inconsistent Type field assignment in the default case.

Line 38 uses string(operatorv1.OperatorStatusTypeProgressing) while lines 22 and 30 assign operatorv1.OperatorStatusTypeProgressing directly. For consistency, remove the unnecessary string() conversion.

♻️ Suggested fix
 	default:
 		return operatorv1.OperatorCondition{
-			Type:   string(operatorv1.OperatorStatusTypeProgressing),
+			Type:   operatorv1.OperatorStatusTypeProgressing,
 			Status: operatorv1.ConditionFalse,
 			Reason: "AsExpected",
 		}
🤖 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/apps/deployment/progressing.go` around lines 15 - 43, The default branch
of DeploymentProgressingCondition sets Type using
string(operatorv1.OperatorStatusTypeProgressing) while the other cases use
operatorv1.OperatorStatusTypeProgressing directly; change the default case to
assign Type: operatorv1.OperatorStatusTypeProgressing (remove the unnecessary
string() conversion) so all branches use the same type value and maintain
consistency.
pkg/operator/apiserver/controller/workload/workload_test.go (1)

60-60: 💤 Low value

The podListErr field is added but never exercised in any test scenario.

This field enables testing error handling in PodContainersStatus (workload.go line 330), but no scenario sets it to a non-nil value. Consider adding a test scenario that verifies the error message fallback when pod listing fails, or remove the field if it's not needed.

🤖 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/operator/apiserver/controller/workload/workload_test.go` at line 60, The
test adds a podListErr field but never exercises it; add a test case in
workload_test.go that sets podListErr to a non-nil error and invokes
PodContainersStatus (the function in workload.go around line 330) to verify the
code returns the expected fallback/error message path, asserting the returned
status or error string matches the fallback; alternatively, if you intentionally
don't need error-path coverage, remove podListErr from the test fixture to avoid
dead test fields.
🤖 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/apps/deployment/progressing.go`:
- Around line 15-43: The default branch of DeploymentProgressingCondition sets
Type using string(operatorv1.OperatorStatusTypeProgressing) while the other
cases use operatorv1.OperatorStatusTypeProgressing directly; change the default
case to assign Type: operatorv1.OperatorStatusTypeProgressing (remove the
unnecessary string() conversion) so all branches use the same type value and
maintain consistency.

In `@pkg/operator/apiserver/controller/workload/workload_test.go`:
- Line 60: The test adds a podListErr field but never exercises it; add a test
case in workload_test.go that sets podListErr to a non-nil error and invokes
PodContainersStatus (the function in workload.go around line 330) to verify the
code returns the expected fallback/error message path, asserting the returned
status or error string matches the fallback; alternatively, if you intentionally
don't need error-path coverage, remove podListErr from the test fixture to avoid
dead test fields.

ℹ️ Review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Enterprise

Run ID: 45e26b26-ec86-46f2-b1a7-ef89c6815adf

📥 Commits

Reviewing files that changed from the base of the PR and between b7e366d and fc3bf32.

📒 Files selected for processing (4)
  • pkg/apps/deployment/progressing.go
  • pkg/apps/deployment/progressing_test.go
  • pkg/operator/apiserver/controller/workload/workload.go
  • pkg/operator/apiserver/controller/workload/workload_test.go

@tchap tchap force-pushed the pr2-progressing-rework branch 4 times, most recently from cb354ea to 94e5f12 Compare May 6, 2026 12:57
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.

🧹 Nitpick comments (1)
pkg/operator/apiserver/controller/workload/workload_test.go (1)

902-904: 💤 Low value

Consider supporting error simulation in fakePodNamespaceLister.

The List method always returns nil for the error. If future tests need to simulate pod listing failures (e.g., to test error handling paths), this would need to be extended.

♻️ Suggested enhancement for error simulation
 type fakePodLister struct {
 	pods []*corev1.Pod
+	err  error
 }

 type fakePodNamespaceLister struct {
 	lister *fakePodLister
 }

 func (f *fakePodNamespaceLister) List(selector labels.Selector) (ret []*corev1.Pod, err error) {
+	if f.lister.err != nil {
+		return nil, f.lister.err
+	}
 	return f.lister.pods, nil
 }
🤖 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/operator/apiserver/controller/workload/workload_test.go` around lines 902
- 904, The fakePodNamespaceLister.List currently always returns f.lister.pods
and nil error; update the fake to allow simulating failures by adding an error
field or function hook to the fakePodNamespaceLister (e.g., err error or
listFunc func(labels.Selector) ([]*corev1.Pod, error)) and change List(selector
labels.Selector) to return either the configured error or delegate to the
hook/return the pods; update tests to inject errors where needed using the new
field/hook.
🤖 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/operator/apiserver/controller/workload/workload_test.go`:
- Around line 902-904: The fakePodNamespaceLister.List currently always returns
f.lister.pods and nil error; update the fake to allow simulating failures by
adding an error field or function hook to the fakePodNamespaceLister (e.g., err
error or listFunc func(labels.Selector) ([]*corev1.Pod, error)) and change
List(selector labels.Selector) to return either the configured error or delegate
to the hook/return the pods; update tests to inject errors where needed using
the new field/hook.

ℹ️ Review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Enterprise

Run ID: b7afd2ac-4fd1-4b8d-a012-341124ddf6a3

📥 Commits

Reviewing files that changed from the base of the PR and between cb354ea and 94e5f12.

📒 Files selected for processing (4)
  • pkg/apps/deployment/progressing.go
  • pkg/apps/deployment/progressing_test.go
  • pkg/operator/apiserver/controller/workload/workload.go
  • pkg/operator/apiserver/controller/workload/workload_test.go

@tchap tchap force-pushed the pr2-progressing-rework branch 2 times, most recently from 4af5bd6 to b32dd27 Compare May 6, 2026 13:41
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 `@pkg/operator/apiserver/controller/workload/workload.go`:
- Around line 307-308: The degraded-status path must consider rollout timeouts
even when AvailableReplicas haven't dropped: change the logic that computes
workloadIsBeingUpdatedTooLong (call to
deployment.HasDeploymentTimedOutProgressing) and workloadIsBeingUpdated
(currently !deployment.HasDeploymentProgressed &&
!workloadIsBeingUpdatedTooLong) so that a ProgressDeadlineExceeded timeout can
set DeploymentDegraded and produce a ProgressDeadlineExceeded reason instead of
only UnavailablePod; update the status-setting code that uses
workloadIsBeingUpdated and the degraded branch (the block referencing
AvailableReplicas and UnavailablePod) to check workloadIsBeingUpdatedTooLong
first and surface ProgressDeadlineExceeded as the condition reason; apply the
same change to the similar code in the other block noted (lines referenced in
review) so timeout cases always produce DeploymentDegraded with the timeout
reason.
🪄 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: 835cd7fd-5330-41b0-aa4a-604609fc43ac

📥 Commits

Reviewing files that changed from the base of the PR and between 94e5f12 and 4af5bd6.

📒 Files selected for processing (4)
  • pkg/apps/deployment/progressing.go
  • pkg/apps/deployment/progressing_test.go
  • pkg/operator/apiserver/controller/workload/workload.go
  • pkg/operator/apiserver/controller/workload/workload_test.go
🚧 Files skipped from review as they are similar to previous changes (1)
  • pkg/apps/deployment/progressing_test.go

Comment thread pkg/operator/apiserver/controller/workload/workload.go
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.

♻️ Duplicate comments (1)
pkg/operator/apiserver/controller/workload/workload.go (1)

307-329: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Surface rollout timeouts through DeploymentDegraded.

ProgressDeadlineExceeded is detected here, but the degraded path still only triggers when AvailableReplicas < desiredReplicas and always reports UnavailablePod. That means a timed-out rollout can leave DeploymentDegraded=False while old replicas are still serving, and even when it does degrade it masks the timeout behind the generic unavailable-pod reason. This still misses the failure mode called out in the PR description.

Suggested direction
-	_, workloadIsBeingUpdatedTooLong := deployment.HasDeploymentTimedOutProgressing(workload.Status)
+	timedOutMessage, workloadIsBeingUpdatedTooLong := deployment.HasDeploymentTimedOutProgressing(workload.Status)
 	workloadIsBeingUpdated := !deployment.HasDeploymentProgressed(workload.Status) && !workloadIsBeingUpdatedTooLong
@@
-	if !workloadHasAllPodsAvailable && (!workloadIsBeingUpdated || workloadIsBeingUpdatedTooLong) {
+	if workloadIsBeingUpdatedTooLong {
+		deploymentDegradedCondition = deploymentDegradedCondition.
+			WithStatus(operatorv1.ConditionTrue).
+			WithReason("ProgressDeadlineExceeded").
+			WithMessage(fmt.Sprintf("deployment/%s.%s has timed out progressing: %s", workload.Name, c.targetNamespace, timedOutMessage))
+	} else if !workloadHasAllPodsAvailable && !workloadIsBeingUpdated {
 		numNonAvailablePods := desiredReplicas - workload.Status.AvailableReplicas
 		deploymentDegradedCondition = deploymentDegradedCondition.
 			WithStatus(operatorv1.ConditionTrue).
 			WithReason("UnavailablePod")

The timeout scenarios in pkg/operator/apiserver/controller/workload/workload_test.go should follow this once fixed.

🤖 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/operator/apiserver/controller/workload/workload.go` around lines 307 -
329, The current logic only sets DeploymentDegraded for unavailable pods and
masks rollout timeouts; update the condition handling so that when
deployment.HasDeploymentTimedOutProgressing(workload.Status) is true you set
deploymentDegradedCondition to ConditionTrue with reason
"ProgressDeadlineExceeded" and a message describing the timeout (include
workload.Name, c.targetNamespace and any podContainersStatus if available)
instead of/alongside the generic "UnavailablePod" path; specifically, after
computing workloadIsBeingUpdatedTooLong and workloadIsBeingUpdated, branch on
the timed-out case (use deployment.HasDeploymentTimedOutProgressing) to set
deploymentDegradedCondition.WithStatus(operatorv1.ConditionTrue).WithReason("ProgressDeadlineExceeded").WithMessage(...),
and only use the "UnavailablePod" reason when the failure is strictly due to
AvailableReplicas < desiredReplicas and not due to the timeout.
🤖 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.

Duplicate comments:
In `@pkg/operator/apiserver/controller/workload/workload.go`:
- Around line 307-329: The current logic only sets DeploymentDegraded for
unavailable pods and masks rollout timeouts; update the condition handling so
that when deployment.HasDeploymentTimedOutProgressing(workload.Status) is true
you set deploymentDegradedCondition to ConditionTrue with reason
"ProgressDeadlineExceeded" and a message describing the timeout (include
workload.Name, c.targetNamespace and any podContainersStatus if available)
instead of/alongside the generic "UnavailablePod" path; specifically, after
computing workloadIsBeingUpdatedTooLong and workloadIsBeingUpdated, branch on
the timed-out case (use deployment.HasDeploymentTimedOutProgressing) to set
deploymentDegradedCondition.WithStatus(operatorv1.ConditionTrue).WithReason("ProgressDeadlineExceeded").WithMessage(...),
and only use the "UnavailablePod" reason when the failure is strictly due to
AvailableReplicas < desiredReplicas and not due to the timeout.

ℹ️ Review info
⚙️ Run configuration

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

Review profile: CHILL

Plan: Enterprise

Run ID: 0dfdc39b-eff3-4603-971a-9ddfa4e4f103

📥 Commits

Reviewing files that changed from the base of the PR and between 4af5bd6 and b32dd27.

📒 Files selected for processing (4)
  • pkg/apps/deployment/progressing.go
  • pkg/apps/deployment/progressing_test.go
  • pkg/operator/apiserver/controller/workload/workload.go
  • pkg/operator/apiserver/controller/workload/workload_test.go

Replace the generation-based progressing check and the 15-minute
v1helpers.IsUpdatingTooLong timer with the deployment controller's
native ProgressDeadlineExceeded condition. This avoids false
Progressing=True signals on scaling operations (where generation
changes but no rollout occurs) and uses a more accurate stall
detection mechanism.

Extract progressing condition logic into a new
DeploymentProgressingCondition helper in pkg/apps/deployment,
along with exported HasDeploymentProgressed and
HasDeploymentTimedOutProgressing helpers.
@tchap tchap force-pushed the pr2-progressing-rework branch from 233f3e6 to 6741f3e Compare May 6, 2026 15:24
@tchap tchap marked this pull request as ready for review May 6, 2026 15: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 May 6, 2026
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 6, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

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

@openshift-ci openshift-ci Bot requested review from bertinatto and p0lyn0mial May 6, 2026 15:25
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 6, 2026

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

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.

2 participants