Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions controllers/kafkacluster_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,6 @@ func (r *KafkaClusterReconciler) Reconcile(ctx context.Context, request ctrl.Req
if err := k8sutil.UpdateRollingUpgradeState(r.Client, instance, time.Now(), log); err != nil {
return requeueWithError(log, err.Error(), err)
}
// Don't transition to Running state while rolling upgrade is in progress
// The state will be updated to Running by the kafka reconciler when the upgrade completes
log.Info("Rolling upgrade in progress, keeping current state")
return reconciled()
}

if err := k8sutil.UpdateCRStatus(r.Client, instance, v1beta1.KafkaClusterRunning, log); err != nil {
Expand Down
Loading