Question About SSL Connection #1120
-
I have a similar requirement - https://arkmq.org/docs/tutorials/send_receive_ingress/ and also , How can I make my custom host for ingress? As of now i see it follows a pattern. Below mentioned is the broker apiVersion: broker.amq.io/v1beta1
kind: ActiveMQArtemis
metadata:
name: artemis-broker
spec:
deploymentPlan:
size: 1
resources:
limits:
cpu: "2"
memory: "4Gi"
requests:
cpu: "1"
memory: "2Gi"
ingressDomain: amq-operator.company.net
acceptors:
- name: sslacceptor
protocols: all
port: 62626
expose: true
sslEnabled: true
sslSecret: tls-activemq-operator The host created is - |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The java trust store (client.ts) in the tls-activemq-operator should include all the certificates to trust your clients. It is required only if your client certificate is not signed by a trusted Certificate Authority. The host for ingress can be customized by setting the ingress IngressHost, i.e.
The ingressHost field supports the following variables: |
Beta Was this translation helpful? Give feedback.
The java trust store (client.ts) in the tls-activemq-operator should include all the certificates to trust your clients. It is required only if your client certificate is not signed by a trusted Certificate Authority.
The host for ingress can be customized by setting the ingress IngressHost, i.e.
The ingressHost field supports the following variables:$(CR_NAME), $ (CR_NAMESPACE), $(BROKER_ORDINAL), $ (ITEM_NAME), $(RES_NAME) and $ (INGRESS_DOMAIN).