Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLOUD-2720 - amq-s2i template missing MQ_ROLE param #179

Merged
merged 1 commit into from
Jan 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions templates/eap72-amq-s2i.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,12 @@
"generate": "expression",
"required": false
},
{
"displayName": "AMQ Role",
"description": "AMQ Role for authenticated user",
"name": "MQ_ROLE",
"value": "admin"
},
{
"displayName": "AMQ Mesh Discovery Type",
"description": "The discovery agent type to use for discovering mesh endpoints. 'dns' will use OpenShift's DNS service to resolve endpoints. 'kube' will use Kubernetes REST API to resolve service endpoints. If using 'kube' the service account for the pod must have the 'view' role, which can be added via 'oc policy add-role-to-user view system:serviceaccount:<namespace>:default' where <namespace> is the project namespace.",
Expand Down Expand Up @@ -627,6 +633,10 @@
"name": "MQ_PASSWORD",
"value": "${MQ_PASSWORD}"
},
{
"name": "MQ_ROLE",
"value": "${MQ_ROLE}"
},
{
"name": "MQ_PROTOCOL",
"value": "tcp"
Expand Down