Skip to content

Commit

Permalink
Merge pull request #274 from gianlucam76/reconcile-time
Browse files Browse the repository at this point in the history
(chore) reconcile SveltosCluster every minute
  • Loading branch information
gianlucam76 authored Feb 8, 2025
2 parents 64334ee + ae82de6 commit ccaa785
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controllers/sveltoscluster_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ func (r *SveltosClusterReconciler) Reconcile(ctx context.Context, req ctrl.Reque

// Handle non-deleted clusterProfile
r.reconcileNormal(ctx, sveltosClusterScope)
// Reconcile back in normalRequeueAfter time
return reconcile.Result{Requeue: true, RequeueAfter: normalRequeueAfter}, nil
// Periodically reconcile. We need to keep evaluating connectivity
return reconcile.Result{Requeue: true, RequeueAfter: time.Minute}, nil
}

func (r *SveltosClusterReconciler) reconcileNormal(
Expand Down

0 comments on commit ccaa785

Please sign in to comment.