amq62-ssl.json 23 KB

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