You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stop disabling management tcp listener when tls enabled (#487)
- fix a bug where management tcp listener no longer
works when tls is enabled and disableNonTLSListeners is set to false
- management tcp listener can be disabled by setting
management.ssl.port without setting management.tcp.port
- ensure that management.tcp.port is set to 15672 when tls is enabled
but disableNonTLSListeners is false
- do not set management.tcp.port when tls is enabled and
disableNonTLSListeners is true
Copy file name to clipboardExpand all lines: api/v1beta1/rabbitmqcluster_types.go
+1-1
Original file line number
Diff line number
Diff line change
@@ -241,7 +241,7 @@ type TLSSpec struct {
241
241
// The Secret must store this as ca.crt.
242
242
// Used for mTLS, and TLS for rabbitmq_web_stomp and rabbitmq_web_mqtt.
243
243
CaSecretNamestring`json:"caSecretName,omitempty"`
244
-
// When set to true, the RabbitmqCluster disables non-TLS listeners for RabbitMQ and for any enabled plugins in the following list: stomp, mqtt, web_stomp, web_mqtt.
244
+
// When set to true, the RabbitmqCluster disables non-TLS listeners for RabbitMQ, management plugin and for any enabled plugins in the following list: stomp, mqtt, web_stomp, web_mqtt.
245
245
// Only TLS-enabled clients will be able to connect.
Copy file name to clipboardExpand all lines: config/crd/bases/rabbitmq.com_rabbitmqclusters.yaml
+1-1
Original file line number
Diff line number
Diff line change
@@ -3456,7 +3456,7 @@ spec:
3456
3456
description: Name of a Secret in the same Namespace as the RabbitmqCluster, containing the Certificate Authority's public certificate for TLS. The Secret must store this as ca.crt. Used for mTLS, and TLS for rabbitmq_web_stomp and rabbitmq_web_mqtt.
3457
3457
type: string
3458
3458
disableNonTLSListeners:
3459
-
description: 'When set to true, the RabbitmqCluster disables non-TLS listeners for RabbitMQ and for any enabled plugins in the following list: stomp, mqtt, web_stomp, web_mqtt. Only TLS-enabled clients will be able to connect.'
3459
+
description: 'When set to true, the RabbitmqCluster disables non-TLS listeners for RabbitMQ, management plugin and for any enabled plugins in the following list: stomp, mqtt, web_stomp, web_mqtt. Only TLS-enabled clients will be able to connect.'
3460
3460
type: boolean
3461
3461
secretName:
3462
3462
description: Name of a Secret in the same Namespace as the RabbitmqCluster, containing the server's private key & public certificate for TLS. The Secret must store these as tls.key and tls.crt, respectively.
0 commit comments