amq62-persistent.json 21 KB

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