amq63-persistent.json 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "annotations": {
  6. "iconClass": "icon-amq",
  7. "tags": "messaging,amq,jboss",
  8. "version": "1.4.7",
  9. "openshift.io/display-name": "JBoss A-MQ 6.3 (no 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.3 based application, including a deployment configuration and using persistence.",
  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-persistent"
  17. },
  18. "labels": {
  19. "template": "amq63-persistent",
  20. "xpaas": "1.4.7"
  21. },
  22. "message": "A new persistent messaging service 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}.",
  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": "Split Data?",
  33. "description": "Split the data directory for each node in a mesh, this is now the default behaviour.",
  34. "name": "AMQ_SPLIT",
  35. "value": "true",
  36. "required": false
  37. },
  38. {
  39. "displayName": "A-MQ Protocols",
  40. "description": "Protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`.",
  41. "name": "MQ_PROTOCOL",
  42. "value": "openwire",
  43. "required": false
  44. },
  45. {
  46. "displayName": "Queues",
  47. "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.",
  48. "name": "MQ_QUEUES",
  49. "value": "",
  50. "required": false
  51. },
  52. {
  53. "displayName": "Topics",
  54. "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.",
  55. "name": "MQ_TOPICS",
  56. "value": "",
  57. "required": false
  58. },
  59. {
  60. "displayName": "A-MQ Serializable Packages",
  61. "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",
  62. "name": "MQ_SERIALIZABLE_PACKAGES",
  63. "value": "",
  64. "required": false
  65. },
  66. {
  67. "displayName": "A-MQ Volume Size",
  68. "description": "Size of the volume used by A-MQ for persisting messages.",
  69. "name": "VOLUME_CAPACITY",
  70. "value": "512Mi",
  71. "required": true
  72. },
  73. {
  74. "displayName": "A-MQ Username",
  75. "description": "User name for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.",
  76. "name": "MQ_USERNAME",
  77. "from": "user[a-zA-Z0-9]{3}",
  78. "generate": "expression",
  79. "required": false
  80. },
  81. {
  82. "displayName": "A-MQ Password",
  83. "description": "Password for standard broker user. It is required for connecting to the broker. If left empty, it will be generated.",
  84. "name": "MQ_PASSWORD",
  85. "from": "[a-zA-Z0-9]{8}",
  86. "generate": "expression",
  87. "required": false
  88. },
  89. {
  90. "displayName": "A-MQ Mesh Discovery Type",
  91. "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.",
  92. "name": "AMQ_MESH_DISCOVERY_TYPE",
  93. "value": "kube",
  94. "required": false
  95. },
  96. {
  97. "displayName": "A-MQ Storage Limit",
  98. "description": "The A-MQ storage usage limit",
  99. "name": "AMQ_STORAGE_USAGE_LIMIT",
  100. "value": "100 gb",
  101. "required": false
  102. },
  103. {
  104. "displayName": "Queue Memory Limit",
  105. "description": "The queue memory limit (default is 1mb)",
  106. "name": "AMQ_QUEUE_MEMORY_LIMIT",
  107. "value": "",
  108. "required": false
  109. },
  110. {
  111. "displayName": "ImageStream Namespace",
  112. "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.",
  113. "name": "IMAGE_STREAM_NAMESPACE",
  114. "value": "openshift",
  115. "required": true
  116. }
  117. ],
  118. "objects": [
  119. {
  120. "kind": "Service",
  121. "apiVersion": "v1",
  122. "spec": {
  123. "ports": [
  124. {
  125. "port": 5672,
  126. "targetPort": 5672
  127. }
  128. ],
  129. "selector": {
  130. "deploymentConfig": "${APPLICATION_NAME}-amq"
  131. }
  132. },
  133. "metadata": {
  134. "name": "${APPLICATION_NAME}-amq-amqp",
  135. "labels": {
  136. "application": "${APPLICATION_NAME}"
  137. },
  138. "annotations": {
  139. "description": "The broker's AMQP port."
  140. }
  141. }
  142. },
  143. {
  144. "kind": "Service",
  145. "apiVersion": "v1",
  146. "spec": {
  147. "ports": [
  148. {
  149. "port": 1883,
  150. "targetPort": 1883
  151. }
  152. ],
  153. "selector": {
  154. "deploymentConfig": "${APPLICATION_NAME}-amq"
  155. }
  156. },
  157. "metadata": {
  158. "name": "${APPLICATION_NAME}-amq-mqtt",
  159. "labels": {
  160. "application": "${APPLICATION_NAME}"
  161. },
  162. "annotations": {
  163. "description": "The broker's MQTT port."
  164. }
  165. }
  166. },
  167. {
  168. "kind": "Service",
  169. "apiVersion": "v1",
  170. "spec": {
  171. "ports": [
  172. {
  173. "port": 61613,
  174. "targetPort": 61613
  175. }
  176. ],
  177. "selector": {
  178. "deploymentConfig": "${APPLICATION_NAME}-amq"
  179. }
  180. },
  181. "metadata": {
  182. "name": "${APPLICATION_NAME}-amq-stomp",
  183. "labels": {
  184. "application": "${APPLICATION_NAME}"
  185. },
  186. "annotations": {
  187. "description": "The broker's STOMP port."
  188. }
  189. }
  190. },
  191. {
  192. "kind": "Service",
  193. "apiVersion": "v1",
  194. "spec": {
  195. "ports": [
  196. {
  197. "port": 61616,
  198. "targetPort": 61616
  199. }
  200. ],
  201. "selector": {
  202. "deploymentConfig": "${APPLICATION_NAME}-amq"
  203. }
  204. },
  205. "metadata": {
  206. "name": "${APPLICATION_NAME}-amq-tcp",
  207. "labels": {
  208. "application": "${APPLICATION_NAME}"
  209. },
  210. "annotations": {
  211. "description": "The broker's OpenWire port.",
  212. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${APPLICATION_NAME}-amq-amqp\", \"kind\": \"Service\"},{\"name\": \"${APPLICATION_NAME}-amq-mqtt\", \"kind\": \"Service\"},{\"name\": \"${APPLICATION_NAME}-amq-stomp\", \"kind\": \"Service\"}]"
  213. }
  214. }
  215. },
  216. {
  217. "kind": "DeploymentConfig",
  218. "apiVersion": "v1",
  219. "metadata": {
  220. "name": "${APPLICATION_NAME}-amq",
  221. "labels": {
  222. "application": "${APPLICATION_NAME}"
  223. }
  224. },
  225. "spec": {
  226. "strategy": {
  227. "type": "Rolling",
  228. "rollingParams": {
  229. "maxSurge": 0
  230. }
  231. },
  232. "triggers": [
  233. {
  234. "type": "ImageChange",
  235. "imageChangeParams": {
  236. "automatic": true,
  237. "containerNames": [
  238. "${APPLICATION_NAME}-amq"
  239. ],
  240. "from": {
  241. "kind": "ImageStreamTag",
  242. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  243. "name": "jboss-amq-63:1.2"
  244. }
  245. }
  246. },
  247. {
  248. "type": "ConfigChange"
  249. }
  250. ],
  251. "replicas": 1,
  252. "selector": {
  253. "deploymentConfig": "${APPLICATION_NAME}-amq"
  254. },
  255. "template": {
  256. "metadata": {
  257. "name": "${APPLICATION_NAME}-amq",
  258. "labels": {
  259. "deploymentConfig": "${APPLICATION_NAME}-amq",
  260. "application": "${APPLICATION_NAME}"
  261. }
  262. },
  263. "spec": {
  264. "terminationGracePeriodSeconds": 60,
  265. "containers": [
  266. {
  267. "name": "${APPLICATION_NAME}-amq",
  268. "image": "jboss-amq-63",
  269. "imagePullPolicy": "Always",
  270. "volumeMounts": [
  271. {
  272. "mountPath": "/opt/amq/data",
  273. "name": "${APPLICATION_NAME}-amq-pvol"
  274. }
  275. ],
  276. "readinessProbe": {
  277. "exec": {
  278. "command": [
  279. "/bin/bash",
  280. "-c",
  281. "/opt/amq/bin/readinessProbe.sh"
  282. ]
  283. }
  284. },
  285. "ports": [
  286. {
  287. "name": "jolokia",
  288. "containerPort": 8778,
  289. "protocol": "TCP"
  290. },
  291. {
  292. "name": "amqp",
  293. "containerPort": 5672,
  294. "protocol": "TCP"
  295. },
  296. {
  297. "name": "mqtt",
  298. "containerPort": 1883,
  299. "protocol": "TCP"
  300. },
  301. {
  302. "name": "stomp",
  303. "containerPort": 61613,
  304. "protocol": "TCP"
  305. },
  306. {
  307. "name": "tcp",
  308. "containerPort": 61616,
  309. "protocol": "TCP"
  310. }
  311. ],
  312. "env": [
  313. {
  314. "name": "AMQ_USER",
  315. "value": "${MQ_USERNAME}"
  316. },
  317. {
  318. "name": "AMQ_PASSWORD",
  319. "value": "${MQ_PASSWORD}"
  320. },
  321. {
  322. "name": "AMQ_TRANSPORTS",
  323. "value": "${MQ_PROTOCOL}"
  324. },
  325. {
  326. "name": "AMQ_QUEUES",
  327. "value": "${MQ_QUEUES}"
  328. },
  329. {
  330. "name": "AMQ_TOPICS",
  331. "value": "${MQ_TOPICS}"
  332. },
  333. {
  334. "name": "MQ_SERIALIZABLE_PACKAGES",
  335. "value": "${MQ_SERIALIZABLE_PACKAGES}"
  336. },
  337. {
  338. "name": "AMQ_SPLIT",
  339. "value": "${AMQ_SPLIT}"
  340. },
  341. {
  342. "name": "AMQ_MESH_DISCOVERY_TYPE",
  343. "value": "${AMQ_MESH_DISCOVERY_TYPE}"
  344. },
  345. {
  346. "name": "AMQ_MESH_SERVICE_NAME",
  347. "value": "${APPLICATION_NAME}-amq-tcp"
  348. },
  349. {
  350. "name": "AMQ_MESH_SERVICE_NAMESPACE",
  351. "valueFrom": {
  352. "fieldRef": {
  353. "fieldPath": "metadata.namespace"
  354. }
  355. }
  356. },
  357. {
  358. "name": "AMQ_STORAGE_USAGE_LIMIT",
  359. "value": "${AMQ_STORAGE_USAGE_LIMIT}"
  360. },
  361. {
  362. "name": "AMQ_QUEUE_MEMORY_LIMIT",
  363. "value": "${AMQ_QUEUE_MEMORY_LIMIT}"
  364. }
  365. ]
  366. }
  367. ],
  368. "volumes": [
  369. {
  370. "name": "${APPLICATION_NAME}-amq-pvol",
  371. "persistentVolumeClaim": {
  372. "claimName": "${APPLICATION_NAME}-amq-claim"
  373. }
  374. }
  375. ]
  376. }
  377. }
  378. }
  379. },
  380. {
  381. "kind": "DeploymentConfig",
  382. "apiVersion": "v1",
  383. "metadata": {
  384. "name": "${APPLICATION_NAME}-drainer",
  385. "labels": {
  386. "application": "${APPLICATION_NAME}"
  387. }
  388. },
  389. "spec": {
  390. "strategy": {
  391. "type": "Recreate"
  392. },
  393. "triggers": [
  394. {
  395. "type": "ImageChange",
  396. "imageChangeParams": {
  397. "automatic": true,
  398. "containerNames": [
  399. "${APPLICATION_NAME}-drainer"
  400. ],
  401. "from": {
  402. "kind": "ImageStreamTag",
  403. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  404. "name": "jboss-amq-63:1.2"
  405. }
  406. }
  407. },
  408. {
  409. "type": "ConfigChange"
  410. }
  411. ],
  412. "replicas": 1,
  413. "selector": {
  414. "deploymentConfig": "${APPLICATION_NAME}-drainer"
  415. },
  416. "template": {
  417. "metadata": {
  418. "name": "${APPLICATION_NAME}-drainer",
  419. "labels": {
  420. "deploymentConfig": "${APPLICATION_NAME}-drainer",
  421. "application": "${APPLICATION_NAME}"
  422. }
  423. },
  424. "spec": {
  425. "terminationGracePeriodSeconds": 60,
  426. "containers": [
  427. {
  428. "name": "${APPLICATION_NAME}-drainer",
  429. "image": "jboss-amq-63",
  430. "command": [
  431. "/opt/amq/bin/drain.sh"
  432. ],
  433. "imagePullPolicy": "Always",
  434. "volumeMounts": [
  435. {
  436. "mountPath": "/opt/amq/data",
  437. "name": "${APPLICATION_NAME}-amq-pvol"
  438. }
  439. ],
  440. "ports": [
  441. {
  442. "name": "jolokia",
  443. "containerPort": 8778,
  444. "protocol": "TCP"
  445. },
  446. {
  447. "name": "tcp",
  448. "containerPort": 61616,
  449. "protocol": "TCP"
  450. }
  451. ],
  452. "env": [
  453. {
  454. "name": "AMQ_USER",
  455. "value": "${MQ_USERNAME}"
  456. },
  457. {
  458. "name": "AMQ_PASSWORD",
  459. "value": "${MQ_PASSWORD}"
  460. },
  461. {
  462. "name": "AMQ_MESH_SERVICE_NAME",
  463. "value": "${APPLICATION_NAME}-amq-tcp"
  464. },
  465. {
  466. "name": "AMQ_MESH_SERVICE_NAMESPACE",
  467. "valueFrom": {
  468. "fieldRef": {
  469. "fieldPath": "metadata.namespace"
  470. }
  471. }
  472. }
  473. ]
  474. }
  475. ],
  476. "volumes": [
  477. {
  478. "name": "${APPLICATION_NAME}-amq-pvol",
  479. "persistentVolumeClaim": {
  480. "claimName": "${APPLICATION_NAME}-amq-claim"
  481. }
  482. }
  483. ]
  484. }
  485. }
  486. }
  487. },
  488. {
  489. "apiVersion": "v1",
  490. "kind": "PersistentVolumeClaim",
  491. "metadata": {
  492. "name": "${APPLICATION_NAME}-amq-claim",
  493. "labels": {
  494. "application": "${APPLICATION_NAME}"
  495. }
  496. },
  497. "spec": {
  498. "accessModes": [
  499. "ReadWriteMany"
  500. ],
  501. "resources": {
  502. "requests": {
  503. "storage": "${VOLUME_CAPACITY}"
  504. }
  505. }
  506. }
  507. }
  508. ]
  509. }