You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Return early if the object or Cluster is paused.
161
+
ifannotations.IsPaused(cluster, m) {
162
+
log.Info("Reconciliation is paused for this object")
163
+
conditions.MarkTrue(m, clusterv1.PausedCondition)
164
+
return ctrl.Result{}, nil
165
+
}
166
+
conditions.MarkFalse(m, clusterv1.PausedCondition, clusterv1.ResourceNotPausedReason, clusterv1.ConditionSeverityInfo, "Resource is operating as expected")
0 commit comments