Quarkus client app (smallrye-amqp) connection broken #512
-
I have the following Broker CR deployed to my local K8s environment (using Kind). apiVersion: broker.amq.io/v1beta1
kind: ActiveMQArtemis
metadata:
name: artemis-broker
spec:
adminUser: admin
adminPassword: admin
addressSettings:
addressSetting:
- autoCreateAddresses: true
- autoCreateQueues: true
console:
expose: true
useClientAuth: false Broker logs
Broker svcs...
I also deployed a simple Quarkus app that uses the
But the Quarkus app gets disconnected from the Broker...
on the broker logs I see this:
Given the broker is reachable from the Networking standpoint, Is there anything I should look at? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
ok, I just learned in order to enable AMQP Protocol you need to explicitly add the apiVersion: broker.amq.io/v1beta1
kind: ActiveMQArtemis
metadata:
name: artemis-broker-amqp
spec:
adminUser: admin
adminPassword: admin
acceptors:
- name: amqp
expose: true
protocols: "AMQP"
port: 5672 |
Beta Was this translation helpful? Give feedback.
ok, I just learned in order to enable AMQP Protocol you need to explicitly add the
acceptors
in yourActiveMQArtemis
CR: