Skip to content

Commit

Permalink
Disable TLSv1 & TLSv1.1 (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel-Jansen authored Nov 13, 2023
1 parent dbf269f commit d02ed20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/activemq-artemis/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: activemq-artemis
version: 0.0.27
version: 0.0.28
description: a multi-protocol, embeddable, very high performance, clustered, asynchronous messaging system.
keywords:
- activemq
Expand Down
2 changes: 1 addition & 1 deletion charts/activemq-artemis/templates/configmaps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ data:
<!-- Acceptors -->
<acceptors>
{{- if .Values.ssl.enabled }}
<acceptor name="netty-ssl-acceptor">tcp://0.0.0.0:61617?sslEnabled=true;keyStorePath=/var/lib/artemis-instance/ssl/broker.ks;keyStorePassword=${keyStorePassword};trustStorePath=/var/lib/artemis-instance/ssl/client.ts;trustStorePassword=${trustStorePassword};needClientAuth=true;enabledProtocols=TLSv1,TLSv1.1,TLSv1.2</acceptor>
<acceptor name="netty-ssl-acceptor">tcp://0.0.0.0:61617?sslEnabled=true;keyStorePath=/var/lib/artemis-instance/ssl/broker.ks;keyStorePassword=${keyStorePassword};trustStorePath=/var/lib/artemis-instance/ssl/client.ts;trustStorePassword=${trustStorePassword};needClientAuth=true;enabledProtocols=TLSv1.2</acceptor>
{{- else }}
<acceptor name="netty-ssl-acceptor">tcp://0.0.0.0:61617</acceptor>
{{- end }}
Expand Down

0 comments on commit d02ed20

Please sign in to comment.