amq63-ssl.json 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "annotations": {
  6. "iconClass": "icon-amq",
  7. "tags": "messaging,amq,jboss",
  8. "version": "1.4.14",
  9. "openshift.io/display-name": "JBoss A-MQ 6.3 (Ephemeral with SSL)",
  10. "openshift.io/provider-display-name": "Red Hat, Inc.",
  11. "description": "An example JBoss A-MQ application. For more information about using this template, see https://github.com/jboss-openshift/application-templates.",
  12. "template.openshift.io/long-description": "This template defines resources needed to develop Red Hat JBoss A-MQ 6.2 based application, including a deployment configuration, using ephemeral (temporary) storage and secure communication using SSL. These can be deployed as standalone or in a mesh.",
  13. "template.openshift.io/documentation-url": "https://access.redhat.com/documentation/en/red-hat-jboss-amq/",
  14. "template.openshift.io/support-url": "https://access.redhat.com"
  15. },
  16. "name": "amq63-ssl"
  17. },
  18. "labels": {
  19. "template": "amq63-ssl",
  20. "xpaas": "1.4.14"
  21. },
  22. "message": "A new messaging service with SSL support has been created in your project. It will handle the protocol(s) \"${MQ_PROTOCOL}\". The username/password for accessing the service is ${MQ_USERNAME}/${MQ_PASSWORD}. Please be sure to create a secret named \"${AMQ_SECRET}\" containing the trust store and key store files (\"${AMQ_TRUSTSTORE}\" and \"${AMQ_KEYSTORE}\") used for serving secure content.",
  23. "parameters": [
  24. {
  25. "displayName": "Application Name",
  26. "description": "The name for the application.",
  27. "name": "APPLICATION_NAME",
  28. "value": "broker",
  29. "required": true
  30. },
  31. {
  32. "displayName": "A-MQ Protocols",
  33. "description": "Protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`. SSL variants of these protocols will be configured automaticaly.",
  34. "name": "MQ_PROTOCOL",
  35. "value": "openwire",
  36. "required": false
  37. },
  38. {
  39. "displayName": "Queues",
  40. "description": "Queue names, separated by commas. These queues will be automatically created when the broker starts. If left empty, queues will be still created dynamically.",
  41. "name": "MQ_QUEUES",
  42. "value": "",
  43. "required": false
  44. },
  45. {
  46. "displayName": "Topics",
  47. "description": "Topic names, separated by commas. These topics will be automatically created when the broker starts. If left empty, topics will be still created dynamically.",
  48. "name": "MQ_TOPICS",
  49. "value": "",
  50. "required": false
  51. },
  52. {
  53. "displayName": "A-MQ Serializable Packages",
  54. "description": "List of packages that are allowed to be serialized for use in ObjectMessage, separated by commas. If your app doesn't use ObjectMessages, leave this blank. This is a security enforcement. For the rationale, see http://activemq.apache.org/objectmessage.html",
  55. "name": "MQ_SERIALIZABLE_PACKAGES",
  56. "value": "",
  57. "required": false
  58. },
  59. {
  60. "displayName": "A-MQ Username",
  61. "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.",
  62. "name": "MQ_USERNAME",
  63. "from": "user[a-zA-Z0-9]{3}",
  64. "generate": "expression",
  65. "required": false
  66. },
  67. {
  68. "displayName": "A-MQ Password",
  69. "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.",
  70. "name": "MQ_PASSWORD",
  71. "from": "[a-zA-Z0-9]{8}",
  72. "generate": "expression",
  73. "required": false
  74. },
  75. {
  76. "displayName": "Secret Name",
  77. "description": "Name of a secret containing SSL related files",
  78. "name": "AMQ_SECRET",
  79. "value": "amq-app-secret",
  80. "required": true
  81. },
  82. {
  83. "displayName": "Trust Store Filename",
  84. "description": "SSL trust store filename",
  85. "name": "AMQ_TRUSTSTORE",
  86. "value": "broker.ts",
  87. "required": true
  88. },
  89. {
  90. "displayName": "Trust Store Password",
  91. "description": "SSL trust store password",
  92. "name": "AMQ_TRUSTSTORE_PASSWORD",
  93. "value": "",
  94. "required": true
  95. },
  96. {
  97. "displayName": "A-MQ Keystore Filename",
  98. "description": "SSL key store filename",
  99. "name": "AMQ_KEYSTORE",
  100. "value": "broker.ks",
  101. "required": true
  102. },
  103. {
  104. "displayName": "A-MQ Keystore Password",
  105. "description": "Password for accessing SSL keystore",
  106. "name": "AMQ_KEYSTORE_PASSWORD",
  107. "value": "",
  108. "required": true
  109. },
  110. {
  111. "displayName": "A-MQ Mesh Discovery Type",
  112. "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.",
  113. "name": "AMQ_MESH_DISCOVERY_TYPE",
  114. "value": "dns",
  115. "required": false
  116. },
  117. {
  118. "displayName": "A-MQ Store Usage Limit",
  119. "description": "Sets the store disk limit usage in activemq.xml. If the value set is greater than the disk size, it will be resized to the available disk space.",
  120. "name": "AMQ_STORAGE_USAGE_LIMIT",
  121. "value": "100 gb",
  122. "required": false
  123. },
  124. {
  125. "displayName": "Queue Memory Limit",
  126. "description": "The queue memory limit (default is 1mb)",
  127. "name": "AMQ_QUEUE_MEMORY_LIMIT",
  128. "value": "",
  129. "required": false
  130. },
  131. {
  132. "displayName": "ImageStream Namespace",
  133. "description": "Namespace in which the ImageStreams for Red Hat Middleware images are installed. These ImageStreams are normally installed in the openshift namespace. You should only need to modify this if you've installed the ImageStreams in a different namespace/project.",
  134. "name": "IMAGE_STREAM_NAMESPACE",
  135. "value": "openshift",
  136. "required": true
  137. }
  138. ],
  139. "objects": [
  140. {
  141. "kind": "Service",
  142. "apiVersion": "v1",
  143. "spec": {
  144. "ports": [
  145. {
  146. "port": 5672,
  147. "targetPort": 5672
  148. }
  149. ],
  150. "selector": {
  151. "deploymentConfig": "${APPLICATION_NAME}-amq"
  152. }
  153. },
  154. "metadata": {
  155. "name": "${APPLICATION_NAME}-amq-amqp",
  156. "labels": {
  157. "application": "${APPLICATION_NAME}"
  158. },
  159. "annotations": {
  160. "description": "The broker's AMQP port."
  161. }
  162. }
  163. },
  164. {
  165. "kind": "Service",
  166. "apiVersion": "v1",
  167. "spec": {
  168. "ports": [
  169. {
  170. "port": 5671,
  171. "targetPort": 5671
  172. }
  173. ],
  174. "selector": {
  175. "deploymentConfig": "${APPLICATION_NAME}-amq"
  176. }
  177. },
  178. "metadata": {
  179. "name": "${APPLICATION_NAME}-amq-amqp-ssl",
  180. "labels": {
  181. "application": "${APPLICATION_NAME}"
  182. },
  183. "annotations": {
  184. "description": "The broker's AMQP SSL port."
  185. }
  186. }
  187. },
  188. {
  189. "kind": "Service",
  190. "apiVersion": "v1",
  191. "spec": {
  192. "ports": [
  193. {
  194. "port": 1883,
  195. "targetPort": 1883
  196. }
  197. ],
  198. "selector": {
  199. "deploymentConfig": "${APPLICATION_NAME}-amq"
  200. }
  201. },
  202. "metadata": {
  203. "name": "${APPLICATION_NAME}-amq-mqtt",
  204. "labels": {
  205. "application": "${APPLICATION_NAME}"
  206. },
  207. "annotations": {
  208. "description": "The broker's MQTT port."
  209. }
  210. }
  211. },
  212. {
  213. "kind": "Service",
  214. "apiVersion": "v1",
  215. "spec": {
  216. "ports": [
  217. {
  218. "port": 8883,
  219. "targetPort": 8883
  220. }
  221. ],
  222. "selector": {
  223. "deploymentConfig": "${APPLICATION_NAME}-amq"
  224. }
  225. },
  226. "metadata": {
  227. "name": "${APPLICATION_NAME}-amq-mqtt-ssl",
  228. "labels": {
  229. "application": "${APPLICATION_NAME}"
  230. },
  231. "annotations": {
  232. "description": "The broker's MQTT SSL port."
  233. }
  234. }
  235. },
  236. {
  237. "kind": "Service",
  238. "apiVersion": "v1",
  239. "spec": {
  240. "ports": [
  241. {
  242. "port": 61613,
  243. "targetPort": 61613
  244. }
  245. ],
  246. "selector": {
  247. "deploymentConfig": "${APPLICATION_NAME}-amq"
  248. }
  249. },
  250. "metadata": {
  251. "name": "${APPLICATION_NAME}-amq-stomp",
  252. "labels": {
  253. "application": "${APPLICATION_NAME}"
  254. },
  255. "annotations": {
  256. "description": "The broker's STOMP port."
  257. }
  258. }
  259. },
  260. {
  261. "kind": "Service",
  262. "apiVersion": "v1",
  263. "spec": {
  264. "ports": [
  265. {
  266. "port": 61612,
  267. "targetPort": 61612
  268. }
  269. ],
  270. "selector": {
  271. "deploymentConfig": "${APPLICATION_NAME}-amq"
  272. }
  273. },
  274. "metadata": {
  275. "name": "${APPLICATION_NAME}-amq-stomp-ssl",
  276. "labels": {
  277. "application": "${APPLICATION_NAME}"
  278. },
  279. "annotations": {
  280. "description": "The broker's STOMP SSL port."
  281. }
  282. }
  283. },
  284. {
  285. "kind": "Service",
  286. "apiVersion": "v1",
  287. "spec": {
  288. "ports": [
  289. {
  290. "port": 61616,
  291. "targetPort": 61616
  292. }
  293. ],
  294. "selector": {
  295. "deploymentConfig": "${APPLICATION_NAME}-amq"
  296. }
  297. },
  298. "metadata": {
  299. "name": "${APPLICATION_NAME}-amq-tcp",
  300. "labels": {
  301. "application": "${APPLICATION_NAME}"
  302. },
  303. "annotations": {
  304. "description": "The broker's OpenWire port."
  305. }
  306. }
  307. },
  308. {
  309. "kind": "Service",
  310. "apiVersion": "v1",
  311. "spec": {
  312. "ports": [
  313. {
  314. "port": 61617,
  315. "targetPort": 61617
  316. }
  317. ],
  318. "selector": {
  319. "deploymentConfig": "${APPLICATION_NAME}-amq"
  320. }
  321. },
  322. "metadata": {
  323. "name": "${APPLICATION_NAME}-amq-tcp-ssl",
  324. "labels": {
  325. "application": "${APPLICATION_NAME}"
  326. },
  327. "annotations": {
  328. "description": "The broker's OpenWire (SSL) port.",
  329. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${APPLICATION_NAME}-amq-tcp\", \"kind\": \"Service\"},{\"name\": \"${APPLICATION_NAME}-amq-amqp\", \"kind\": \"Service\"},{\"name\": \"${APPLICATION_NAME}-amq-mqtt\", \"kind\": \"Service\"},{\"name\": \"${APPLICATION_NAME}-amq-stomp\", \"kind\": \"Service\"},{\"name\": \"${APPLICATION_NAME}-amq-amqp-ssl\", \"kind\": \"Service\"},{\"name\": \"${APPLICATION_NAME}-amq-mqtt-ssl\", \"kind\": \"Service\"},{\"name\": \"${APPLICATION_NAME}-amq-stomp-ssl\", \"kind\": \"Service\"}]"
  330. }
  331. }
  332. },
  333. {
  334. "kind": "Service",
  335. "apiVersion": "v1",
  336. "spec": {
  337. "clusterIP": "None",
  338. "ports": [
  339. {
  340. "name": "mesh",
  341. "port": 61616
  342. }
  343. ],
  344. "selector": {
  345. "deploymentConfig": "${APPLICATION_NAME}-amq"
  346. }
  347. },
  348. "metadata": {
  349. "name": "${APPLICATION_NAME}-amq-mesh",
  350. "labels": {
  351. "application": "${APPLICATION_NAME}"
  352. },
  353. "annotations": {
  354. "service.alpha.kubernetes.io/tolerate-unready-endpoints": "true",
  355. "description": "Supports node discovery for mesh formation."
  356. }
  357. }
  358. },
  359. {
  360. "kind": "DeploymentConfig",
  361. "apiVersion": "v1",
  362. "metadata": {
  363. "name": "${APPLICATION_NAME}-amq",
  364. "labels": {
  365. "application": "${APPLICATION_NAME}"
  366. }
  367. },
  368. "spec": {
  369. "strategy": {
  370. "type": "Rolling",
  371. "rollingParams": {
  372. "maxSurge": 0
  373. }
  374. },
  375. "triggers": [
  376. {
  377. "type": "ImageChange",
  378. "imageChangeParams": {
  379. "automatic": true,
  380. "containerNames": [
  381. "${APPLICATION_NAME}-amq"
  382. ],
  383. "from": {
  384. "kind": "ImageStreamTag",
  385. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  386. "name": "jboss-amq-63:1.3"
  387. }
  388. }
  389. },
  390. {
  391. "type": "ConfigChange"
  392. }
  393. ],
  394. "replicas": 1,
  395. "selector": {
  396. "deploymentConfig": "${APPLICATION_NAME}-amq"
  397. },
  398. "template": {
  399. "metadata": {
  400. "name": "${APPLICATION_NAME}-amq",
  401. "labels": {
  402. "deploymentConfig": "${APPLICATION_NAME}-amq",
  403. "application": "${APPLICATION_NAME}"
  404. }
  405. },
  406. "spec": {
  407. "terminationGracePeriodSeconds": 60,
  408. "containers": [
  409. {
  410. "name": "${APPLICATION_NAME}-amq",
  411. "image": "jboss-amq-63",
  412. "imagePullPolicy": "Always",
  413. "volumeMounts": [
  414. {
  415. "name": "broker-secret-volume",
  416. "mountPath": "/etc/amq-secret-volume",
  417. "readOnly": true
  418. }
  419. ],
  420. "readinessProbe": {
  421. "exec": {
  422. "command": [
  423. "/bin/bash",
  424. "-c",
  425. "/opt/amq/bin/readinessProbe.sh"
  426. ]
  427. }
  428. },
  429. "ports": [
  430. {
  431. "name": "jolokia",
  432. "containerPort": 8778,
  433. "protocol": "TCP"
  434. },
  435. {
  436. "name": "amqp",
  437. "containerPort": 5672,
  438. "protocol": "TCP"
  439. },
  440. {
  441. "name": "amqp-ssl",
  442. "containerPort": 5671,
  443. "protocol": "TCP"
  444. },
  445. {
  446. "name": "mqtt",
  447. "containerPort": 1883,
  448. "protocol": "TCP"
  449. },
  450. {
  451. "name": "mqtt-ssl",
  452. "containerPort": 8883,
  453. "protocol": "TCP"
  454. },
  455. {
  456. "name": "stomp",
  457. "containerPort": 61613,
  458. "protocol": "TCP"
  459. },
  460. {
  461. "name": "stomp-ssl",
  462. "containerPort": 61612,
  463. "protocol": "TCP"
  464. },
  465. {
  466. "name": "tcp",
  467. "containerPort": 61616,
  468. "protocol": "TCP"
  469. },
  470. {
  471. "name": "tcp-ssl",
  472. "containerPort": 61617,
  473. "protocol": "TCP"
  474. }
  475. ],
  476. "env": [
  477. {
  478. "name": "AMQ_USER",
  479. "value": "${MQ_USERNAME}"
  480. },
  481. {
  482. "name": "AMQ_PASSWORD",
  483. "value": "${MQ_PASSWORD}"
  484. },
  485. {
  486. "name": "AMQ_TRANSPORTS",
  487. "value": "${MQ_PROTOCOL}"
  488. },
  489. {
  490. "name": "AMQ_QUEUES",
  491. "value": "${MQ_QUEUES}"
  492. },
  493. {
  494. "name": "AMQ_TOPICS",
  495. "value": "${MQ_TOPICS}"
  496. },
  497. {
  498. "name": "MQ_SERIALIZABLE_PACKAGES",
  499. "value": "${MQ_SERIALIZABLE_PACKAGES}"
  500. },
  501. {
  502. "name": "AMQ_MESH_DISCOVERY_TYPE",
  503. "value": "${AMQ_MESH_DISCOVERY_TYPE}"
  504. },
  505. {
  506. "name": "AMQ_MESH_SERVICE_NAME",
  507. "value": "${APPLICATION_NAME}-amq-mesh"
  508. },
  509. {
  510. "name": "AMQ_MESH_SERVICE_NAMESPACE",
  511. "valueFrom": {
  512. "fieldRef": {
  513. "fieldPath": "metadata.namespace"
  514. }
  515. }
  516. },
  517. {
  518. "name": "AMQ_KEYSTORE_TRUSTSTORE_DIR",
  519. "value": "/etc/amq-secret-volume"
  520. },
  521. {
  522. "name": "AMQ_TRUSTSTORE",
  523. "value": "${AMQ_TRUSTSTORE}"
  524. },
  525. {
  526. "name": "AMQ_TRUSTSTORE_PASSWORD",
  527. "value": "${AMQ_TRUSTSTORE_PASSWORD}"
  528. },
  529. {
  530. "name": "AMQ_KEYSTORE",
  531. "value": "${AMQ_KEYSTORE}"
  532. },
  533. {
  534. "name": "AMQ_KEYSTORE_PASSWORD",
  535. "value": "${AMQ_KEYSTORE_PASSWORD}"
  536. },
  537. {
  538. "name": "AMQ_STORAGE_USAGE_LIMIT",
  539. "value": "${AMQ_STORAGE_USAGE_LIMIT}"
  540. },
  541. {
  542. "name": "AMQ_QUEUE_MEMORY_LIMIT",
  543. "value": "${AMQ_QUEUE_MEMORY_LIMIT}"
  544. }
  545. ]
  546. }
  547. ],
  548. "volumes": [
  549. {
  550. "name": "broker-secret-volume",
  551. "secret": {
  552. "secretName": "${AMQ_SECRET}"
  553. }
  554. }
  555. ]
  556. }
  557. }
  558. }
  559. }
  560. ]
  561. }