amq63-basic.json 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  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 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": "Red Hat JBoss A-MQ 6.3 (Ephemeral, no SSL)",
  11. "openshift.io/provider-display-name": "Red Hat, Inc."
  12. },
  13. "name": "amq63-basic"
  14. },
  15. "labels": {
  16. "template": "amq63-basic",
  17. "xpaas": "1.4.7"
  18. },
  19. "message": "A new 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": "A-MQ Protocols",
  30. "description": "Protocols to configure, separated by commas. Allowed values are: `openwire`, `amqp`, `stomp` and `mqtt`.",
  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": "A-MQ Mesh Discovery Type",
  74. "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.",
  75. "name": "AMQ_MESH_DISCOVERY_TYPE",
  76. "value": "kube",
  77. "required": false
  78. },
  79. {
  80. "displayName": "A-MQ Storage Limit",
  81. "description": "The A-MQ storage usage limit",
  82. "name": "AMQ_STORAGE_USAGE_LIMIT",
  83. "value": "100 gb",
  84. "required": false
  85. },
  86. {
  87. "displayName": "Queue Memory Limit",
  88. "description": "The queue memory limit (default is 1mb)",
  89. "name": "AMQ_QUEUE_MEMORY_LIMIT",
  90. "value": "",
  91. "required": false
  92. },
  93. {
  94. "displayName": "ImageStream Namespace",
  95. "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.",
  96. "name": "IMAGE_STREAM_NAMESPACE",
  97. "value": "openshift",
  98. "required": true
  99. }
  100. ],
  101. "objects": [
  102. {
  103. "kind": "Service",
  104. "apiVersion": "v1",
  105. "spec": {
  106. "ports": [
  107. {
  108. "port": 5672,
  109. "targetPort": 5672
  110. }
  111. ],
  112. "selector": {
  113. "deploymentConfig": "${APPLICATION_NAME}-amq"
  114. }
  115. },
  116. "metadata": {
  117. "name": "${APPLICATION_NAME}-amq-amqp",
  118. "labels": {
  119. "application": "${APPLICATION_NAME}"
  120. },
  121. "annotations": {
  122. "description": "The broker's AMQP port."
  123. }
  124. }
  125. },
  126. {
  127. "kind": "Service",
  128. "apiVersion": "v1",
  129. "spec": {
  130. "ports": [
  131. {
  132. "port": 1883,
  133. "targetPort": 1883
  134. }
  135. ],
  136. "selector": {
  137. "deploymentConfig": "${APPLICATION_NAME}-amq"
  138. }
  139. },
  140. "metadata": {
  141. "name": "${APPLICATION_NAME}-amq-mqtt",
  142. "labels": {
  143. "application": "${APPLICATION_NAME}"
  144. },
  145. "annotations": {
  146. "description": "The broker's MQTT port."
  147. }
  148. }
  149. },
  150. {
  151. "kind": "Service",
  152. "apiVersion": "v1",
  153. "spec": {
  154. "ports": [
  155. {
  156. "port": 61613,
  157. "targetPort": 61613
  158. }
  159. ],
  160. "selector": {
  161. "deploymentConfig": "${APPLICATION_NAME}-amq"
  162. }
  163. },
  164. "metadata": {
  165. "name": "${APPLICATION_NAME}-amq-stomp",
  166. "labels": {
  167. "application": "${APPLICATION_NAME}"
  168. },
  169. "annotations": {
  170. "description": "The broker's STOMP port."
  171. }
  172. }
  173. },
  174. {
  175. "kind": "Service",
  176. "apiVersion": "v1",
  177. "spec": {
  178. "ports": [
  179. {
  180. "port": 61616,
  181. "targetPort": 61616
  182. }
  183. ],
  184. "selector": {
  185. "deploymentConfig": "${APPLICATION_NAME}-amq"
  186. }
  187. },
  188. "metadata": {
  189. "name": "${APPLICATION_NAME}-amq-tcp",
  190. "labels": {
  191. "application": "${APPLICATION_NAME}"
  192. },
  193. "annotations": {
  194. "description": "The broker's OpenWire port.",
  195. "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\"}]"
  196. }
  197. }
  198. },
  199. {
  200. "kind": "DeploymentConfig",
  201. "apiVersion": "v1",
  202. "metadata": {
  203. "name": "${APPLICATION_NAME}-amq",
  204. "labels": {
  205. "application": "${APPLICATION_NAME}"
  206. }
  207. },
  208. "spec": {
  209. "strategy": {
  210. "type": "Rolling",
  211. "rollingParams": {
  212. "maxSurge": 0
  213. }
  214. },
  215. "triggers": [
  216. {
  217. "type": "ImageChange",
  218. "imageChangeParams": {
  219. "automatic": true,
  220. "containerNames": [
  221. "${APPLICATION_NAME}-amq"
  222. ],
  223. "from": {
  224. "kind": "ImageStreamTag",
  225. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  226. "name": "jboss-amq-63:1.2"
  227. }
  228. }
  229. },
  230. {
  231. "type": "ConfigChange"
  232. }
  233. ],
  234. "replicas": 1,
  235. "selector": {
  236. "deploymentConfig": "${APPLICATION_NAME}-amq"
  237. },
  238. "template": {
  239. "metadata": {
  240. "name": "${APPLICATION_NAME}-amq",
  241. "labels": {
  242. "deploymentConfig": "${APPLICATION_NAME}-amq",
  243. "application": "${APPLICATION_NAME}"
  244. }
  245. },
  246. "spec": {
  247. "terminationGracePeriodSeconds": 60,
  248. "containers": [
  249. {
  250. "name": "${APPLICATION_NAME}-amq",
  251. "image": "jboss-amq-63",
  252. "imagePullPolicy": "Always",
  253. "readinessProbe": {
  254. "exec": {
  255. "command": [
  256. "/bin/bash",
  257. "-c",
  258. "/opt/amq/bin/readinessProbe.sh"
  259. ]
  260. }
  261. },
  262. "ports": [
  263. {
  264. "name": "jolokia",
  265. "containerPort": 8778,
  266. "protocol": "TCP"
  267. },
  268. {
  269. "name": "amqp",
  270. "containerPort": 5672,
  271. "protocol": "TCP"
  272. },
  273. {
  274. "name": "mqtt",
  275. "containerPort": 1883,
  276. "protocol": "TCP"
  277. },
  278. {
  279. "name": "stomp",
  280. "containerPort": 61613,
  281. "protocol": "TCP"
  282. },
  283. {
  284. "name": "tcp",
  285. "containerPort": 61616,
  286. "protocol": "TCP"
  287. }
  288. ],
  289. "env": [
  290. {
  291. "name": "AMQ_USER",
  292. "value": "${MQ_USERNAME}"
  293. },
  294. {
  295. "name": "AMQ_PASSWORD",
  296. "value": "${MQ_PASSWORD}"
  297. },
  298. {
  299. "name": "AMQ_TRANSPORTS",
  300. "value": "${MQ_PROTOCOL}"
  301. },
  302. {
  303. "name": "AMQ_QUEUES",
  304. "value": "${MQ_QUEUES}"
  305. },
  306. {
  307. "name": "AMQ_TOPICS",
  308. "value": "${MQ_TOPICS}"
  309. },
  310. {
  311. "name": "MQ_SERIALIZABLE_PACKAGES",
  312. "value": "${MQ_SERIALIZABLE_PACKAGES}"
  313. },
  314. {
  315. "name": "AMQ_MESH_DISCOVERY_TYPE",
  316. "value": "${AMQ_MESH_DISCOVERY_TYPE}"
  317. },
  318. {
  319. "name": "AMQ_MESH_SERVICE_NAME",
  320. "value": "${APPLICATION_NAME}-amq-tcp"
  321. },
  322. {
  323. "name": "AMQ_MESH_SERVICE_NAMESPACE",
  324. "valueFrom": {
  325. "fieldRef": {
  326. "fieldPath": "metadata.namespace"
  327. }
  328. }
  329. },
  330. {
  331. "name": "AMQ_STORAGE_USAGE_LIMIT",
  332. "value": "${AMQ_STORAGE_USAGE_LIMIT}"
  333. },
  334. {
  335. "name": "AMQ_QUEUE_MEMORY_LIMIT",
  336. "value": "${AMQ_QUEUE_MEMORY_LIMIT}"
  337. }
  338. ]
  339. }
  340. ]
  341. }
  342. }
  343. }
  344. }
  345. ]
  346. }