Bumping versions

This commit is contained in:
buildmaster
2023-12-23 01:47:11 +00:00
parent 29fd546346
commit a774edae11

View File

@@ -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, "