I am using the Artemis Cloud operator for deploying ActiveMQ Artemis in k8s cluster. I wanted to change some properties of brokers that were not available in ActiveMQ Artemis custom resources. Specifically, I wanted to change log level from INFO to WARN. Below were the options I came across.
- Create a custom broker init image and have a script written to modify the
logging.propertiesfile - Add properties in
broker.propertiesconfig map. (Which I am not able to because the config map is immutable)
My questions are
- Whether my above observations are correct or not?
- Whether any environmental variables present for this configuration?
- Do we have better way to change this specific configuration?