Skip to content

Commit

Permalink
Merge pull request #1131 from ngraham20/clustermanageraddon-bugfix
Browse files Browse the repository at this point in the history
Fixed ClusterManager bug
  • Loading branch information
ngraham20 authored Dec 13, 2024
2 parents 177b38f + d833422 commit bc792bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/backplaneconfig_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ func (r *MultiClusterEngineReconciler) ensureToggleableComponents(ctx context.Co
}
}

if backplaneConfig.Enabled(backplanev1.ClusterManager) && foundation.CanInstallAddons(ctx, r.Client) {
if backplaneConfig.Enabled(backplanev1.ClusterManager) {
result, err = r.ensureClusterManager(ctx, backplaneConfig)
if result != (ctrl.Result{}) {
requeue = true
Expand Down

0 comments on commit bc792bc

Please sign in to comment.