diff --git a/README.md b/README.md index ec4351534fdd33422f8d3f83fd5ede550742223c..e3a4653bce9a5e3fb2e4523c35bcf44b7bc2bcaa 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,14 @@ docker load -i *tarball* kubectl create ns active-mq ``` -2. Modify _jetty-realm.properties_ in the 'deployment' directory of this repo to use your own custom usernames and passwords. +2. **Modify _jetty-realm.properties_ in the 'deployment' directory of this repo to use your own custom usernames and passwords:** +``` +# Example admin account: +admin_username: <<>>, admin +# +# Example guest user: +guest_username: <<>>, guest +``` 3. Create a secret using your _jetty-realm.properties_ file: ``` diff --git a/deployment/activemq-deployment.yaml b/deployment/activemq-deployment.yaml index 21850fa88db7776932ac23e12c61a075fa32f8c3..0fc2e08568380652f3de90546de3001f145d5759 100644 --- a/deployment/activemq-deployment.yaml +++ b/deployment/activemq-deployment.yaml @@ -27,7 +27,7 @@ spec: cpu: 400m volumeMounts: - name: active-creds - mountPath: /apache-activemq-5.15.13/conf/jetty-realm.properties + mountPath: /apache-activemq-5.15.13/conf/jetty-realm.properties # *** Modify jetty-realm.properties to use your own custom usernames and passwords FIRST *** subPath: jetty-realm.properties volumes: - name: active-creds diff --git a/deployment/jetty-realm.properties b/deployment/jetty-realm.properties index 2b14d59247a008abf14ceded139f801fb4b2e6bc..31f84b92ee1897820fc6ccdd77f56b9a5ad7f412 100644 --- a/deployment/jetty-realm.properties +++ b/deployment/jetty-realm.properties @@ -1,3 +1,8 @@ +# The following configuration file defines the appropriate users within ActiveMQ # username: password, role -admin_username: admin_pass, admin -guest_user: guest_pass, guest \ No newline at end of file +# +# Example admin account: +admin_username: <<>>, admin +# +# Example guest user: +guest_username: <<>>, guest \ No newline at end of file