Skip to content
Open
Show file tree
Hide file tree
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
89 changes: 89 additions & 0 deletions decisionserver/decisionserver62-amq-s2i.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,36 @@
"value": "100 gb",
"required": false
},
{
"description": "Name of a secret containing SSL related files",
"name": "AMQ_SECRET",
"value": "amq-app-secret",
"required": true
},
{
"description": "SSL trust store filename",
"name": "AMQ_TRUSTSTORE",
"value": "broker.ts",
"required": true
},
{
"description": "SSL trust store password",
"name": "AMQ_TRUSTSTORE_PASSWORD",
"value": "",
"required": true
},
{
"description": "SSL key store filename",
"name": "AMQ_KEYSTORE",
"value": "broker.ks",
"required": true
},
{
"description": "Password for accessing SSL keystore",
"name": "AMQ_KEYSTORE_PASSWORD",
"value": "",
"required": true
},
{
"description": "GitHub trigger secret",
"name": "GITHUB_WEBHOOK_SECRET",
Expand Down Expand Up @@ -256,6 +286,30 @@
}
}
},
{
"kind": "Service",
"apiVersion": "v1",
"spec": {
"ports": [
{
"port": 61617,
"targetPort": 61617
}
],
"selector": {
"deploymentConfig": "${APPLICATION_NAME}-amq"
}
},
"metadata": {
"name": "${APPLICATION_NAME}-amq-tcp-ssl",
"labels": {
"application": "${APPLICATION_NAME}"
},
"annotations": {
"description": "The broker's OpenWire (SSL) port."
}
}
},
{
"kind": "Route",
"apiVersion": "v1",
Expand Down Expand Up @@ -601,6 +655,13 @@
"name": "${APPLICATION_NAME}-amq",
"image": "jboss-amq-62",
"imagePullPolicy": "Always",
"volumeMounts": [
{
"name": "broker-secret-volume",
"mountPath": "/etc/amq-secret-volume",
"readOnly": true
}
],
"readinessProbe": {
"exec": {
"command": [
Expand Down Expand Up @@ -692,9 +753,37 @@
{
"name": "AMQ_STORAGE_USAGE_LIMIT",
"value": "${AMQ_STORAGE_USAGE_LIMIT}"
},
{
"name": "AMQ_KEYSTORE_TRUSTSTORE_DIR",
"value": "/etc/amq-secret-volume"
},
{
"name": "AMQ_TRUSTSTORE",
"value": "${AMQ_TRUSTSTORE}"
},
{
"name": "AMQ_TRUSTSTORE_PASSWORD",
"value": "${AMQ_TRUSTSTORE_PASSWORD}"
},
{
"name": "AMQ_KEYSTORE",
"value": "${AMQ_KEYSTORE}"
},
{
"name": "AMQ_KEYSTORE_PASSWORD",
"value": "${AMQ_KEYSTORE_PASSWORD}"
}
]
}
],
"volumes": [
{
"name": "broker-secret-volume",
"secret": {
"secretName": "${AMQ_SECRET}"
}
}
]
}
}
Expand Down
89 changes: 89 additions & 0 deletions decisionserver/decisionserver63-amq-s2i.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,36 @@
"value": "100 gb",
"required": false
},
{
"description": "Name of a secret containing SSL related files",
"name": "AMQ_SECRET",
"value": "amq-app-secret",
"required": true
},
{
"description": "SSL trust store filename",
"name": "AMQ_TRUSTSTORE",
"value": "broker.ts",
"required": true
},
{
"description": "SSL trust store password",
"name": "AMQ_TRUSTSTORE_PASSWORD",
"value": "",
"required": true
},
{
"description": "SSL key store filename",
"name": "AMQ_KEYSTORE",
"value": "broker.ks",
"required": true
},
{
"description": "Password for accessing SSL keystore",
"name": "AMQ_KEYSTORE_PASSWORD",
"value": "",
"required": true
},
{
"description": "GitHub trigger secret",
"name": "GITHUB_WEBHOOK_SECRET",
Expand Down Expand Up @@ -250,6 +280,30 @@
}
}
},
{
"kind": "Service",
"apiVersion": "v1",
"spec": {
"ports": [
{
"port": 61617,
"targetPort": 61617
}
],
"selector": {
"deploymentConfig": "${APPLICATION_NAME}-amq"
}
},
"metadata": {
"name": "${APPLICATION_NAME}-amq-tcp-ssl",
"labels": {
"application": "${APPLICATION_NAME}"
},
"annotations": {
"description": "The broker's OpenWire (SSL) port."
}
}
},
{
"kind": "Route",
"apiVersion": "v1",
Expand Down Expand Up @@ -587,6 +641,13 @@
"name": "${APPLICATION_NAME}-amq",
"image": "jboss-amq-62",
"imagePullPolicy": "Always",
"volumeMounts": [
{
"name": "broker-secret-volume",
"mountPath": "/etc/amq-secret-volume",
"readOnly": true
}
],
"readinessProbe": {
"exec": {
"command": [
Expand Down Expand Up @@ -678,9 +739,37 @@
{
"name": "AMQ_STORAGE_USAGE_LIMIT",
"value": "${AMQ_STORAGE_USAGE_LIMIT}"
},
{
"name": "AMQ_KEYSTORE_TRUSTSTORE_DIR",
"value": "/etc/amq-secret-volume"
},
{
"name": "AMQ_TRUSTSTORE",
"value": "${AMQ_TRUSTSTORE}"
},
{
"name": "AMQ_TRUSTSTORE_PASSWORD",
"value": "${AMQ_TRUSTSTORE_PASSWORD}"
},
{
"name": "AMQ_KEYSTORE",
"value": "${AMQ_KEYSTORE}"
},
{
"name": "AMQ_KEYSTORE_PASSWORD",
"value": "${AMQ_KEYSTORE_PASSWORD}"
}
]
}
],
"volumes": [
{
"name": "broker-secret-volume",
"secret": {
"secretName": "${AMQ_SECRET}"
}
}
]
}
}
Expand Down
85 changes: 85 additions & 0 deletions processserver/processserver63-amq-mysql-persistent-s2i.json
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,36 @@
"value": "100 gb",
"required": false
},
{
"description": "Name of a secret containing SSL related files",
"name": "AMQ_SECRET",
"value": "amq-app-secret",
"required": true
},
{
"description": "SSL trust store filename",
"name": "AMQ_TRUSTSTORE",
"value": "broker.ts",
"required": true
},
{
"description": "SSL trust store password",
"name": "AMQ_TRUSTSTORE_PASSWORD",
"value": "",
"required": true
},
{
"description": "SSL key store filename",
"name": "AMQ_KEYSTORE",
"value": "broker.ks",
"required": true
},
{
"description": "Password for accessing SSL keystore",
"name": "AMQ_KEYSTORE_PASSWORD",
"value": "",
"required": true
},
{
"description": "GitHub trigger secret",
"name": "GITHUB_WEBHOOK_SECRET",
Expand Down Expand Up @@ -370,6 +400,30 @@
}
}
},
{
"kind": "Service",
"apiVersion": "v1",
"spec": {
"ports": [
{
"port": 61617,
"targetPort": 61617
}
],
"selector": {
"deploymentConfig": "${APPLICATION_NAME}-amq"
}
},
"metadata": {
"name": "${APPLICATION_NAME}-amq-tcp-ssl",
"labels": {
"application": "${APPLICATION_NAME}"
},
"annotations": {
"description": "The broker's OpenWire (SSL) port."
}
}
},
{
"kind": "Route",
"apiVersion": "v1",
Expand Down Expand Up @@ -930,6 +984,11 @@
{
"mountPath": "/opt/amq/data",
"name": "${APPLICATION_NAME}-amq-pvol"
},
{
"name": "broker-secret-volume",
"mountPath": "/etc/amq-secret-volume",
"readOnly": true
}
],
"readinessProbe": {
Expand Down Expand Up @@ -1027,6 +1086,26 @@
{
"name": "AMQ_STORAGE_USAGE_LIMIT",
"value": "${AMQ_STORAGE_USAGE_LIMIT}"
},
{
"name": "AMQ_KEYSTORE_TRUSTSTORE_DIR",
"value": "/etc/amq-secret-volume"
},
{
"name": "AMQ_TRUSTSTORE",
"value": "${AMQ_TRUSTSTORE}"
},
{
"name": "AMQ_TRUSTSTORE_PASSWORD",
"value": "${AMQ_TRUSTSTORE_PASSWORD}"
},
{
"name": "AMQ_KEYSTORE",
"value": "${AMQ_KEYSTORE}"
},
{
"name": "AMQ_KEYSTORE_PASSWORD",
"value": "${AMQ_KEYSTORE_PASSWORD}"
}
]
}
Expand All @@ -1037,6 +1116,12 @@
"persistentVolumeClaim": {
"claimName": "${APPLICATION_NAME}-amq-claim"
}
},
{
"name": "broker-secret-volume",
"secret": {
"secretName": "${AMQ_SECRET}"
}
}
]
}
Expand Down
Loading