This is an automated email from the ASF dual-hosted git repository.
jbertram pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new f4189051cd ARTEMIS-5555 Use TLS protocol for KubernetesClientImpl
SSLContext
f4189051cd is described below
commit f4189051cd879db9524a93e5dcfa748854f28612
Author: Domenico Francesco Bruscino <[email protected]>
AuthorDate: Thu Jun 26 17:43:43 2025 +0200
ARTEMIS-5555 Use TLS protocol for KubernetesClientImpl SSLContext
---
.../spi/core/security/jaas/kubernetes/client/KubernetesClientImpl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/artemis-server/src/main/java/org/apache/activemq/artemis/spi/core/security/jaas/kubernetes/client/KubernetesClientImpl.java
b/artemis-server/src/main/java/org/apache/activemq/artemis/spi/core/security/jaas/kubernetes/client/KubernetesClientImpl.java
index f327a112a0..54dd9f0b79 100644
---
a/artemis-server/src/main/java/org/apache/activemq/artemis/spi/core/security/jaas/kubernetes/client/KubernetesClientImpl.java
+++
b/artemis-server/src/main/java/org/apache/activemq/artemis/spi/core/security/jaas/kubernetes/client/KubernetesClientImpl.java
@@ -148,7 +148,7 @@ public class KubernetesClientImpl implements
KubernetesClient {
}
private SSLContext buildSSLContext() throws Exception {
- SSLContext ctx = SSLContext.getInstance("SSL");
+ SSLContext ctx = SSLContext.getInstance("TLS");
File certFile = new File(caPath);
if (!certFile.exists()) {
logger.debug("Kubernetes CA certificate not found at: {}. Truststore
not configured", caPath);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact