amq62-persistent-ssl.json 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "annotations": {
  6. "iconClass": "icon-amq",
  7. "tags": "messaging,amq,jboss,hidden",
  8. "version": "1.4.7",
  9. "openshift.io/display-name": "JBoss A-MQ 6.2 (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 persistence and secure communication using SSL.",
  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": "amq62-persistent-ssl"
  17. },
  18. "labels": {
  19. "template": "amq62-persistent-ssl",
  20. "xpaas": "1.4.7"
  21. },
  22. "message": "A new persistent 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 the \"amq-service-account\" service account and 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": "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": "Secret Name",
  98. "description": "Name of a secret containing SSL related files",
  99. "name": "AMQ_SECRET",
  100. "value": "amq-app-secret",
  101. "required": true
  102. },
  103. {
  104. "displayName": "Trust Store Filename",
  105. "description": "SSL trust store filename",
  106. "name": "AMQ_TRUSTSTORE",
  107. "value": "broker.ts",
  108. "required": true
  109. },
  110. {
  111. "displayName": "Trust Store Password",
  112. "description": "SSL trust store password",
  113. "name": "AMQ_TRUSTSTORE_PASSWORD",
  114. "value": "",
  115. "required": true
  116. },
  117. {
  118. "displayName": "A-MQ Keystore Filename",
  119. "description": "SSL key store filename",
  120. "name": "AMQ_KEYSTORE",
  121. "value": "broker.ks",
  122. "required": true
  123. },
  124. {
  125. "displayName": "A-MQ Keystore Password",
  126. "description": "Password for accessing SSL keystore",
  127. "name": "AMQ_KEYSTORE_PASSWORD",
  128. "value": "",
  129. "required": true
  130. },
  131. {
  132. "displayName": "A-MQ Storage Limit",
  133. "description": "The A-MQ storage usage limit",
  134. "name": "AMQ_STORAGE_USAGE_LIMIT",
  135. "value": "100 gb",
  136. "required": false
  137. },
  138. {
  139. "displayName": "Queue Memory Limit",
  140. "description": "The queue memory limit (default is 1mb)",
  141. "name": "AMQ_QUEUE_MEMORY_LIMIT",
  142. "value": "",
  143. "required": false
  144. },
  145. {
  146. "displayName": "ImageStream Namespace",
  147. "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.",
  148. "name": "IMAGE_STREAM_NAMESPACE",
  149. "value": "openshift",
  150. "required": true
  151. }
  152. ],
  153. "objects": [
  154. {
  155. "kind": "Service",
  156. "apiVersion": "v1",
  157. "spec": {
  158. "ports": [
  159. {
  160. "port": 5672,
  161. "targetPort": 5672
  162. }
  163. ],
  164. "selector": {
  165. "deploymentConfig": "${APPLICATION_NAME}-amq"
  166. }
  167. },
  168. "metadata": {
  169. "name": "${APPLICATION_NAME}-amq-amqp",
  170. "labels": {
  171. "application": "${APPLICATION_NAME}"
  172. },
  173. "annotations": {
  174. "description": "The broker's AMQP port."
  175. }
  176. }
  177. },
  178. {
  179. "kind": "Service",
  180. "apiVersion": "v1",
  181. "spec": {
  182. "ports": [
  183. {
  184. "port": 5671,
  185. "targetPort": 5671
  186. }
  187. ],
  188. "selector": {
  189. "deploymentConfig": "${APPLICATION_NAME}-amq"
  190. }
  191. },
  192. "metadata": {
  193. "name": "${APPLICATION_NAME}-amq-amqp-ssl",
  194. "labels": {
  195. "application": "${APPLICATION_NAME}"
  196. },
  197. "annotations": {
  198. "description": "The broker's AMQP SSL port."
  199. }
  200. }
  201. },
  202. {
  203. "kind": "Service",
  204. "apiVersion": "v1",
  205. "spec": {
  206. "ports": [
  207. {
  208. "port": 1883,
  209. "targetPort": 1883
  210. }
  211. ],
  212. "selector": {
  213. "deploymentConfig": "${APPLICATION_NAME}-amq"
  214. }
  215. },
  216. "metadata": {
  217. "name": "${APPLICATION_NAME}-amq-mqtt",
  218. "labels": {
  219. "application": "${APPLICATION_NAME}"
  220. },
  221. "annotations": {
  222. "description": "The broker's MQTT port."
  223. }
  224. }
  225. },
  226. {
  227. "kind": "Service",
  228. "apiVersion": "v1",
  229. "spec": {
  230. "ports": [
  231. {
  232. "port": 8883,
  233. "targetPort": 8883
  234. }
  235. ],
  236. "selector": {
  237. "deploymentConfig": "${APPLICATION_NAME}-amq"
  238. }
  239. },
  240. "metadata": {
  241. "name": "${APPLICATION_NAME}-amq-mqtt-ssl",
  242. "labels": {
  243. "application": "${APPLICATION_NAME}"
  244. },
  245. "annotations": {
  246. "description": "The broker's MQTT SSL port."
  247. }
  248. }
  249. },
  250. {
  251. "kind": "Service",
  252. "apiVersion": "v1",
  253. "spec": {
  254. "ports": [
  255. {
  256. "port": 61613,
  257. "targetPort": 61613
  258. }
  259. ],
  260. "selector": {
  261. "deploymentConfig": "${APPLICATION_NAME}-amq"
  262. }
  263. },
  264. "metadata": {
  265. "name": "${APPLICATION_NAME}-amq-stomp",
  266. "labels": {
  267. "application": "${APPLICATION_NAME}"
  268. },
  269. "annotations": {
  270. "description": "The broker's STOMP port."
  271. }
  272. }
  273. },
  274. {
  275. "kind": "Service",
  276. "apiVersion": "v1",
  277. "spec": {
  278. "ports": [
  279. {
  280. "port": 61612,
  281. "targetPort": 61612
  282. }
  283. ],
  284. "selector": {
  285. "deploymentConfig": "${APPLICATION_NAME}-amq"
  286. }
  287. },
  288. "metadata": {
  289. "name": "${APPLICATION_NAME}-amq-stomp-ssl",
  290. "labels": {
  291. "application": "${APPLICATION_NAME}"
  292. },
  293. "annotations": {
  294. "description": "The broker's STOMP SSL port."
  295. }
  296. }
  297. },
  298. {
  299. "kind": "Service",
  300. "apiVersion": "v1",
  301. "spec": {
  302. "ports": [
  303. {
  304. "port": 61616,
  305. "targetPort": 61616
  306. }
  307. ],
  308. "selector": {
  309. "deploymentConfig": "${APPLICATION_NAME}-amq"
  310. }
  311. },
  312. "metadata": {
  313. "name": "${APPLICATION_NAME}-amq-tcp",
  314. "labels": {
  315. "application": "${APPLICATION_NAME}"
  316. },
  317. "annotations": {
  318. "description": "The broker's OpenWire port."
  319. }
  320. }
  321. },
  322. {
  323. "kind": "Service",
  324. "apiVersion": "v1",
  325. "spec": {
  326. "ports": [
  327. {
  328. "port": 61617,
  329. "targetPort": 61617
  330. }
  331. ],
  332. "selector": {
  333. "deploymentConfig": "${APPLICATION_NAME}-amq"
  334. }
  335. },
  336. "metadata": {
  337. "name": "${APPLICATION_NAME}-amq-tcp-ssl",
  338. "labels": {
  339. "application": "${APPLICATION_NAME}"
  340. },
  341. "annotations": {
  342. "description": "The broker's OpenWire (SSL) port.",
  343. "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\"}]"
  344. }
  345. }
  346. },
  347. {
  348. "kind": "DeploymentConfig",
  349. "apiVersion": "v1",
  350. "metadata": {
  351. "name": "${APPLICATION_NAME}-amq",
  352. "labels": {
  353. "application": "${APPLICATION_NAME}"
  354. }
  355. },
  356. "spec": {
  357. "strategy": {
  358. "type": "Rolling",
  359. "rollingParams": {
  360. "maxSurge": 0
  361. }
  362. },
  363. "triggers": [
  364. {
  365. "type": "ImageChange",
  366. "imageChangeParams": {
  367. "automatic": true,
  368. "containerNames": [
  369. "${APPLICATION_NAME}-amq"
  370. ],
  371. "from": {
  372. "kind": "ImageStreamTag",
  373. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  374. "name": "jboss-amq-62:1.6"
  375. }
  376. }
  377. },
  378. {
  379. "type": "ConfigChange"
  380. }
  381. ],
  382. "replicas": 1,
  383. "selector": {
  384. "deploymentConfig": "${APPLICATION_NAME}-amq"
  385. },
  386. "template": {
  387. "metadata": {
  388. "name": "${APPLICATION_NAME}-amq",
  389. "labels": {
  390. "deploymentConfig": "${APPLICATION_NAME}-amq",
  391. "application": "${APPLICATION_NAME}"
  392. }
  393. },
  394. "spec": {
  395. "serviceAccountName": "amq-service-account",
  396. "terminationGracePeriodSeconds": 60,
  397. "containers": [
  398. {
  399. "name": "${APPLICATION_NAME}-amq",
  400. "image": "jboss-amq-62",
  401. "imagePullPolicy": "Always",
  402. "volumeMounts": [
  403. {
  404. "name": "broker-secret-volume",
  405. "mountPath": "/etc/amq-secret-volume",
  406. "readOnly": true
  407. },
  408. {
  409. "mountPath": "/opt/amq/data",
  410. "name": "${APPLICATION_NAME}-amq-pvol"
  411. }
  412. ],
  413. "readinessProbe": {
  414. "exec": {
  415. "command": [
  416. "/bin/bash",
  417. "-c",
  418. "/opt/amq/bin/readinessProbe.sh"
  419. ]
  420. }
  421. },
  422. "ports": [
  423. {
  424. "name": "jolokia",
  425. "containerPort": 8778,
  426. "protocol": "TCP"
  427. },
  428. {
  429. "name": "amqp",
  430. "containerPort": 5672,
  431. "protocol": "TCP"
  432. },
  433. {
  434. "name": "amqp-ssl",
  435. "containerPort": 5671,
  436. "protocol": "TCP"
  437. },
  438. {
  439. "name": "mqtt",
  440. "containerPort": 1883,
  441. "protocol": "TCP"
  442. },
  443. {
  444. "name": "mqtt-ssl",
  445. "containerPort": 8883,
  446. "protocol": "TCP"
  447. },
  448. {
  449. "name": "stomp",
  450. "containerPort": 61613,
  451. "protocol": "TCP"
  452. },
  453. {
  454. "name": "stomp-ssl",
  455. "containerPort": 61612,
  456. "protocol": "TCP"
  457. },
  458. {
  459. "name": "tcp",
  460. "containerPort": 61616,
  461. "protocol": "TCP"
  462. },
  463. {
  464. "name": "tcp-ssl",
  465. "containerPort": 61617,
  466. "protocol": "TCP"
  467. }
  468. ],
  469. "env": [
  470. {
  471. "name": "AMQ_USER",
  472. "value": "${MQ_USERNAME}"
  473. },
  474. {
  475. "name": "AMQ_PASSWORD",
  476. "value": "${MQ_PASSWORD}"
  477. },
  478. {
  479. "name": "AMQ_TRANSPORTS",
  480. "value": "${MQ_PROTOCOL}"
  481. },
  482. {
  483. "name": "AMQ_QUEUES",
  484. "value": "${MQ_QUEUES}"
  485. },
  486. {
  487. "name": "AMQ_TOPICS",
  488. "value": "${MQ_TOPICS}"
  489. },
  490. {
  491. "name": "MQ_SERIALIZABLE_PACKAGES",
  492. "value": "${MQ_SERIALIZABLE_PACKAGES}"
  493. },
  494. {
  495. "name": "AMQ_SPLIT",
  496. "value": "${AMQ_SPLIT}"
  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-tcp"
  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. "name": "${APPLICATION_NAME}-amq-pvol",
  554. "persistentVolumeClaim": {
  555. "claimName": "${APPLICATION_NAME}-amq-claim"
  556. }
  557. }
  558. ]
  559. }
  560. }
  561. }
  562. },
  563. {
  564. "kind": "DeploymentConfig",
  565. "apiVersion": "v1",
  566. "metadata": {
  567. "name": "${APPLICATION_NAME}-drainer",
  568. "labels": {
  569. "application": "${APPLICATION_NAME}"
  570. }
  571. },
  572. "spec": {
  573. "strategy": {
  574. "type": "Recreate"
  575. },
  576. "triggers": [
  577. {
  578. "type": "ImageChange",
  579. "imageChangeParams": {
  580. "automatic": true,
  581. "containerNames": [
  582. "${APPLICATION_NAME}-drainer"
  583. ],
  584. "from": {
  585. "kind": "ImageStreamTag",
  586. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  587. "name": "jboss-amq-62:1.6"
  588. }
  589. }
  590. },
  591. {
  592. "type": "ConfigChange"
  593. }
  594. ],
  595. "replicas": 1,
  596. "selector": {
  597. "deploymentConfig": "${APPLICATION_NAME}-drainer"
  598. },
  599. "template": {
  600. "metadata": {
  601. "name": "${APPLICATION_NAME}-drainer",
  602. "labels": {
  603. "deploymentConfig": "${APPLICATION_NAME}-drainer",
  604. "application": "${APPLICATION_NAME}"
  605. }
  606. },
  607. "spec": {
  608. "terminationGracePeriodSeconds": 60,
  609. "containers": [
  610. {
  611. "name": "${APPLICATION_NAME}-drainer",
  612. "image": "jboss-amq-62",
  613. "command": [
  614. "/opt/amq/bin/drain.sh"
  615. ],
  616. "imagePullPolicy": "Always",
  617. "volumeMounts": [
  618. {
  619. "mountPath": "/opt/amq/data",
  620. "name": "${APPLICATION_NAME}-amq-pvol"
  621. }
  622. ],
  623. "ports": [
  624. {
  625. "name": "jolokia",
  626. "containerPort": 8778,
  627. "protocol": "TCP"
  628. },
  629. {
  630. "name": "tcp",
  631. "containerPort": 61616,
  632. "protocol": "TCP"
  633. }
  634. ],
  635. "env": [
  636. {
  637. "name": "AMQ_USER",
  638. "value": "${MQ_USERNAME}"
  639. },
  640. {
  641. "name": "AMQ_PASSWORD",
  642. "value": "${MQ_PASSWORD}"
  643. },
  644. {
  645. "name": "AMQ_MESH_SERVICE_NAME",
  646. "value": "${APPLICATION_NAME}-amq-tcp"
  647. },
  648. {
  649. "name": "AMQ_MESH_SERVICE_NAMESPACE",
  650. "valueFrom": {
  651. "fieldRef": {
  652. "fieldPath": "metadata.namespace"
  653. }
  654. }
  655. }
  656. ]
  657. }
  658. ],
  659. "volumes": [
  660. {
  661. "name": "${APPLICATION_NAME}-amq-pvol",
  662. "persistentVolumeClaim": {
  663. "claimName": "${APPLICATION_NAME}-amq-claim"
  664. }
  665. }
  666. ]
  667. }
  668. }
  669. }
  670. },
  671. {
  672. "apiVersion": "v1",
  673. "kind": "PersistentVolumeClaim",
  674. "metadata": {
  675. "name": "${APPLICATION_NAME}-amq-claim",
  676. "labels": {
  677. "application": "${APPLICATION_NAME}"
  678. }
  679. },
  680. "spec": {
  681. "accessModes": [
  682. "ReadWriteMany"
  683. ],
  684. "resources": {
  685. "requests": {
  686. "storage": "${VOLUME_CAPACITY}"
  687. }
  688. }
  689. }
  690. }
  691. ]
  692. }