diff --git a/controllers/awscluster_controller.go b/controllers/awscluster_controller.go index a6cfc81aed..13db38000a 100644 --- a/controllers/awscluster_controller.go +++ b/controllers/awscluster_controller.go @@ -288,7 +288,7 @@ func (r *AWSClusterReconciler) reconcileLoadBalancer(clusterScope *scope.Cluster return &retryAfterDuration, nil } - clusterScope.Debug("looking up IP address for DNS", "dns", awsCluster.Status.Network.APIServerELB.DNSName) + clusterScope.Debug("Looking up IP address for DNS", "dns", awsCluster.Status.Network.APIServerELB.DNSName) if _, err := net.LookupIP(awsCluster.Status.Network.APIServerELB.DNSName); err != nil { clusterScope.Error(err, "failed to get IP address for dns name", "dns", awsCluster.Status.Network.APIServerELB.DNSName) conditions.MarkFalse(awsCluster, infrav1.LoadBalancerReadyCondition, infrav1.WaitForDNSNameResolveReason, clusterv1.ConditionSeverityInfo, "")