Skip to content

Commit

Permalink
Remove finilizer on NHC Timeout deleted SNRs
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Shitrit <[email protected]>
  • Loading branch information
mshitrit committed Jan 5, 2025
1 parent 1ef42b3 commit a6db316
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions controllers/selfnoderemediation_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,12 @@ func (r *SelfNodeRemediationReconciler) ReconcileManager(ctx context.Context, re
}

if r.isStoppedByNHC(snr) {
//This remediation is no longer relevant, most likely because fixed by a different remediator.
if snr.GetDeletionTimestamp() != nil {
//Removing finalizer so NHC deletion of the remediation can be completed
r.logger.Info("Removing finalizer of timed-out remediation deleted by NHC", "remediation name", snr.GetName())
return ctrl.Result{}, r.removeFinalizer(snr)
}
r.logger.Info("NHC added the timed-out annotation, remediation will be stopped")
events.RemediationStoppedByNHC(r.Recorder, snr)
return ctrl.Result{}, r.updateConditions(remediationTimeoutByNHC, snr)
Expand Down

0 comments on commit a6db316

Please sign in to comment.