diff --git a/internal/controller/helmrelease_controller.go b/internal/controller/helmrelease_controller.go index fe71f8184..b6369f803 100644 --- a/internal/controller/helmrelease_controller.go +++ b/internal/controller/helmrelease_controller.go @@ -188,7 +188,7 @@ func (r *HelmReleaseReconciler) Reconcile(ctx context.Context, req ctrl.Request) r.recordReadiness(ctx, hr) // Log reconciliation duration - durationMsg := fmt.Sprintf("reconcilation finished in %s", time.Now().Sub(start).String()) + durationMsg := fmt.Sprintf("reconciliation finished in %s", time.Now().Sub(start).String()) if result.RequeueAfter > 0 { durationMsg = fmt.Sprintf("%s, next run in %s", durationMsg, result.RequeueAfter.String()) }