@@ -96,7 +96,7 @@ func (r *OpenStackClusterReconciler) Reconcile(ctx context.Context, req ctrl.Req
96
96
log = log .WithValues ("cluster" , cluster .Name )
97
97
98
98
if annotations .IsPaused (cluster , openStackCluster ) {
99
- log .Info ("OpenStackCluster or linked Cluster is marked as paused. Won't reconcile " )
99
+ log .Info ("OpenStackCluster or linked Cluster is marked as paused. Not reconciling " )
100
100
return reconcile.Result {}, nil
101
101
}
102
102
@@ -193,7 +193,7 @@ func (r *OpenStackClusterReconciler) reconcileDelete(ctx context.Context, scope
193
193
194
194
// Cluster is deleted so remove the finalizer.
195
195
controllerutil .RemoveFinalizer (openStackCluster , infrav1 .ClusterFinalizer )
196
- scope .Logger ().Info ("Reconciled Cluster delete successfully" )
196
+ scope .Logger ().Info ("Reconciled Cluster deleted successfully" )
197
197
return ctrl.Result {}, nil
198
198
}
199
199
@@ -304,7 +304,7 @@ func reconcileNormal(scope scope.Scope, cluster *clusterv1.Cluster, openStackClu
304
304
openStackCluster .Status .Ready = true
305
305
openStackCluster .Status .FailureMessage = nil
306
306
openStackCluster .Status .FailureReason = nil
307
- scope .Logger ().Info ("Reconciled Cluster create successfully" )
307
+ scope .Logger ().Info ("Reconciled Cluster created successfully" )
308
308
return reconcile.Result {}, nil
309
309
}
310
310
@@ -610,7 +610,7 @@ func (r *OpenStackClusterReconciler) SetupWithManager(ctx context.Context, mgr c
610
610
}
611
611
612
612
if annotations .IsExternallyManaged (c ) {
613
- log .V (4 ).Info ("OpenStackCluster is externally managed, skipping mapping. " )
613
+ log .V (4 ).Info ("OpenStackCluster is externally managed, skipping mapping" )
614
614
return nil
615
615
}
616
616
return requests
0 commit comments