diff --git a/spring-cloud-kubernetes-client-autoconfig/src/main/java/org/springframework/cloud/kubernetes/client/KubernetesClientUtils.java b/spring-cloud-kubernetes-client-autoconfig/src/main/java/org/springframework/cloud/kubernetes/client/KubernetesClientUtils.java index d1ecdeb8..35dff0f1 100644 --- a/spring-cloud-kubernetes-client-autoconfig/src/main/java/org/springframework/cloud/kubernetes/client/KubernetesClientUtils.java +++ b/spring-cloud-kubernetes-client-autoconfig/src/main/java/org/springframework/cloud/kubernetes/client/KubernetesClientUtils.java @@ -51,14 +51,14 @@ public final class KubernetesClientUtils { catch (Exception e) { if (e instanceof IllegalStateException illegalStateException && illegalStateException.getCause() instanceof NumberFormatException) { - LOG.info("Could not create the Kubernetes ApiClient in a cluster environment, because connection port " + - "was not provided."); + LOG.info("Could not create the Kubernetes ApiClient in a cluster environment, because connection port " + + "was not provided."); } else { LOG.info("Could not create the Kubernetes ApiClient in a cluster environment, because : ", e); } LOG.info(""" - Trying to use a "standard" configuration to create the Kubernetes ApiClient"""); + Trying to use a "standard" configuration to create the Kubernetes ApiClient"""); try { ApiClient apiClient = ClientBuilder.defaultClient(); LOG.info("Created standard API client. Unless $KUBECONFIG or $HOME/.kube/config is defined, "