UNCLASSIFIED

Commit 8e89c239 authored by bhearn's avatar bhearn
Browse files

update instructions

parent d084505d
Pipeline #30629 passed with stage
...@@ -20,7 +20,14 @@ docker load -i *tarball* ...@@ -20,7 +20,14 @@ docker load -i *tarball*
kubectl create ns active-mq 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 PASSWORD GOES HERE>>>, admin
#
# Example guest user:
guest_username: <<<GUEST PASSWORD GOES HERE>>>, guest
```
3. Create a secret using your _jetty-realm.properties_ file: 3. Create a secret using your _jetty-realm.properties_ file:
``` ```
......
...@@ -27,7 +27,7 @@ spec: ...@@ -27,7 +27,7 @@ spec:
cpu: 400m cpu: 400m
volumeMounts: volumeMounts:
- name: active-creds - 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 subPath: jetty-realm.properties
volumes: volumes:
- name: active-creds - name: active-creds
......
# The following configuration file defines the appropriate users within ActiveMQ
# username: password, role # username: password, role
admin_username: admin_pass, admin #
guest_user: guest_pass, guest # Example admin account:
\ No newline at end of file admin_username: <<<ADMIN PASSWORD GOES HERE>>>, admin
#
# Example guest user:
guest_username: <<<GUEST PASSWORD GOES HERE>>>, guest
\ No newline at end of file
  • Pipeline Status: SUCCESS
    Branch: updates

    graph LR
      0([setup]):::INTERNAL_SUCCESS --> 1([Import Artifacts]):::SUCCESS --> 2((/)):::INTERNAL_SUCCESS --> 3([Stage Artifacts]):::SUCCESS --> 4((/)):::INTERNAL_SUCCESS --> 5([Build]):::SUCCESS --> 6([Publish, Scan & Report]):::INTERNAL_NOT_BUILT
    
    classDef SUCCESS font-size:10px
    classDef FAILURE fill:#f44, font-size:10px
    classDef SKIPPED font-size:10px
    classDef ABORTED fill:#889, font-size:10px
    classDef INTERNAL_SUCCESS font-size:10px, stroke-dasharray: 2, 1
    classDef INTERNAL_FAILURE fill:#f44, font-size:10px, stroke-dasharray: 2, 1
    classDef INTERNAL_SKIPPED font-size:10px, stroke-dasharray: 2, 1
    classDef INTERNAL_ABORTED fill:#889, font-size:10px, stroke-dasharray: 2, 1
    
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment