Skip to content

Commit 3093492

Browse files
committed
Change log level traces of Kubernetes deployment from INFO to DEBUG
Fix #31722
1 parent d36e974 commit 3093492

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extensions/kubernetes/vanilla/deployment/src/main/java/io/quarkus/kubernetes/deployment/KubernetesDeploy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private Result doCheck(KubernetesClientBuildItem clientBuilder) {
6565
+ masterURL + "' could not be determined. Please ensure that a valid token is being used."));
6666
}
6767

68-
log.info("Kubernetes API Server at '" + masterURL + "' successfully contacted.");
68+
log.debugf("Kubernetes API Server at '" + masterURL + "' successfully contacted.");
6969
log.debugf("Kubernetes Version: %s.%s", version.getMajor(), version.getMinor());
7070
serverFound = true;
7171
return Result.enabled();

extensions/kubernetes/vanilla/deployment/src/main/java/io/quarkus/kubernetes/deployment/KubernetesDeployer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public void selectDeploymentTarget(ContainerImageInfoBuildItem containerImageInf
7272
Optional<String> activeContainerImageCapability = ContainerImageCapabilitiesUtil
7373
.getActiveContainerImageCapability(capabilities);
7474

75-
//If container image actions are explicilty disabled block deployment even if a container image capability is not present.
75+
//If container image actions are explicitly disabled block deployment even if a container image capability is not present.
7676
if (!containerImageConfig.isBuildExplicitlyDisabled() && !containerImageConfig.isPushExplicitlyDisabled()
7777
&& activeContainerImageCapability.isEmpty()) {
7878
// we can't throw an exception here, because it could prevent the Kubernetes resources from being generated

0 commit comments

Comments
 (0)