Skip to content

Commit 84022fc

Browse files
authored
fix constant reconcilation issue in helm controller (#6895)
Signed-off-by: Adam D. Cornett <[email protected]>
1 parent 939446b commit 84022fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/helm/controller/reconcile.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func (r HelmOperatorReconciler) Reconcile(ctx context.Context, request reconcile
105105
}
106106

107107
status := types.StatusFor(o)
108-
originalStatus := o.DeepCopy().Object["status"]
108+
originalStatus := types.StatusFor(o.DeepCopy())
109109
log = log.WithValues("release", manager.ReleaseName())
110110

111111
reconcileResult := reconcile.Result{RequeueAfter: r.ReconcilePeriod}

0 commit comments

Comments
 (0)