-
Hi, How i can converter this ActiveMQArtemisSecurity to a valid brokerProperties?
Thanks in advance, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
There is a an example in the tests that can help: https://github.com/arkmq-org/activemq-artemis-operator/blob/main/controllers/activemqartemissecurity_broker_properties_test.go#L113 there is also a new JMX operation on the broker control, exportConfigAsProperties that will give you a properties view of you existing broker configuration, you need to exec onto the pod to see the file. |
Beta Was this translation helpful? Give feedback.
-
Hi @gtully, Thanks for the help! Best regards and I wish you a good day, |
Beta Was this translation helpful? Give feedback.
There is a an example in the tests that can help: https://github.com/arkmq-org/activemq-artemis-operator/blob/main/controllers/activemqartemissecurity_broker_properties_test.go#L113
there is also a new JMX operation on the broker control, exportConfigAsProperties that will give you a properties view of you existing broker configuration, you need to exec onto the pod to see the file.
This can be used to give inspiration for the transformation of a security cr to properties.