Skip to content

Conversation

diafour
Copy link
Member

@diafour diafour commented Oct 13, 2025

Description

Do not requeue reconcile if status was not updated with error "namespaces ... not found". Just print Warning in this situation.

Why do we need it, and what problem does it solve?

This situation is not an error, but it fails e2e tests with this messages:

  this is the `Virtualization-controller` error! not the current `Ginkgo` context error:
  {
    "level": "error",
    "msg": "Failed to update resource",
    "err": "error updating status subresource: namespaces \"dvp-e2e-m-sds-20251008-145944-724\" not found",
    "controller": "vm-controller",
    "handler": "",
    "ds": "",
    "collector": "",
    "name": "x-559ce0-worker-afad0dff-t78m8-hmnl8",
    "namespace": "dvp-e2e-m-sds-20251008-145944-724",
    "reconcileID": "d2587a50-d711-47b6-83a7-ff620e39706f",
    "time": "2025-10-13T02:03:39Z"
  }
  

What is the expected result?

Reduce number of false-negative e2e runs.

Checklist

  • The code is covered by unit tests.
  • e2e tests passed.
  • Documentation updated according to the changes.
  • Changes were tested in the Kubernetes cluster manually.

Changelog entries

section: vm
type: chore
summary: Reduce noise in logs about "namespaces not found".

Do not requeue reconcile if status was not updated with error "namespaces ... not found". Just print Warning in this situation.

Signed-off-by: Ivan Mikheykin <[email protected]>
@diafour diafour added this to the v1.2.0 milestone Oct 13, 2025
Copy link
Contributor

sourcery-ai bot commented Oct 13, 2025

Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

Introduce a new branch in the reconcile handler that intercepts namespace-not-found errors, logs them as warnings, and suppresses requeueing, reducing log noise during e2e tests.

Sequence diagram for updated error handling in VM reconcile process

sequenceDiagram
participant Controller
participant Logger
participant KubernetesAPI
Controller->KubernetesAPI: Update resource status
KubernetesAPI-->>Controller: Error (namespace not found)
Controller->Logger: Warn("Namespace is gone while reconcile the object")
Note over Controller: No requeue triggered
Loading

Class diagram for updated error handling in Reconciler

classDiagram
class Reconciler {
  +reconcile()
}
Reconciler : +handlersLoop
Reconciler : -case k8serrors.IsNotFound(err) && strings.Contains(err.Error(), "namespaces")
Reconciler : +Warn("Namespace is gone while reconcile the object")
Loading

File-Level Changes

Change Details Files
Add conditional handling for namespace-not-found errors to log a warning and skip requeue
  • Added a new case checking for k8serrors.IsNotFound(err) && error message containing "namespaces"
  • Replaced error log with logger.Warn for this specific condition
  • Removed explicit requeue or error accumulation when namespace is gone
images/virtualization-artifact/pkg/controller/reconciler/reconciler.go

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link
Contributor

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

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

Hey there - I've reviewed your changes - here's some feedback:

  • Matching on the ‘namespaces’ substring in err.Error() is brittle—consider using apierrors.StatusError and inspecting Status().Details.Kind to robustly identify namespace-not-found errors.
  • Revisiting whether skipping the requeue entirely on namespace-not-found is safe for all scenarios, or if a deferred requeue with backoff might better handle transient deletion races.
Prompt for AI Agents
Please address the comments from this code review:

## Overall Comments
- Matching on the ‘namespaces’ substring in err.Error() is brittle—consider using apierrors.StatusError and inspecting Status().Details.Kind to robustly identify namespace-not-found errors.
- Revisiting whether skipping the requeue entirely on namespace-not-found is safe for all scenarios, or if a deferred requeue with backoff might better handle transient deletion races.

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@diafour
Copy link
Member Author

diafour commented Oct 14, 2025

Warning is not enough here. May be we should add metric and alert for such cases.

The problem was that VM stuck in Terminating state but NS was forced to delete.

@diafour diafour marked this pull request as draft October 14, 2025 11:05
@Isteb4k Isteb4k modified the milestones: v1.2.0, v1.1.1 Oct 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants