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