RockteMQ-AI commented on issue #215:
URL: 
https://github.com/apache/rocketmq-operator/issues/215#issuecomment-5192840377

   **Issue Evaluation**
   
   Category: `question`
   
   To persist `plain_acl.yml` in Kubernetes:
   1. Create a ConfigMap with your ACL configuration
   2. Mount it as a volume in the broker StatefulSet, overriding the default 
`conf/plain_acl.yml`
   
   Example:
   ```yaml
   # In your Broker CR or StatefulSet template
   volumeMounts:
     - name: acl-config
       mountPath: /home/rocketmq/rocketmq-4.9.4/conf/plain_acl.yml
       subPath: plain_acl.yml
   volumes:
     - name: acl-config
       configMap:
         name: broker-acl-config
   ```
   
   Alternatively, check if the operator CRD supports an `aclConfigMap` field in 
newer versions.
   
   ---
   *Automated evaluation by RockteMQ-AI*


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to