decisionserver64-basic-s2i.json 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "annotations": {
  6. "description": "Application template for Red Hat JBoss BRMS 6.4 decision server applications built using S2I.",
  7. "iconClass": "icon-decisionserver",
  8. "tags": "decisionserver,jboss,xpaas",
  9. "version": "1.4.7",
  10. "openshift.io/display-name": "Red Hat JBoss BRMS 6.4 decision server (no https)"
  11. },
  12. "name": "decisionserver64-basic-s2i"
  13. },
  14. "labels": {
  15. "template": "decisionserver64-basic-s2i",
  16. "xpaas": "1.4.7"
  17. },
  18. "message": "A new BRMS application has been created in your project. The username/password for accessing the KIE Server REST or JMS interface is ${KIE_SERVER_USER}/${KIE_SERVER_PASSWORD}.",
  19. "parameters": [
  20. {
  21. "displayName": "KIE Container Deployment",
  22. "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2",
  23. "name": "KIE_CONTAINER_DEPLOYMENT",
  24. "value": "decisionserver-hellorules=org.openshift.quickstarts:decisionserver-hellorules:1.3.0.Final",
  25. "required": false
  26. },
  27. {
  28. "displayName": "KIE Server Username",
  29. "description": "The user name to access the KIE Server REST or JMS interface.",
  30. "name": "KIE_SERVER_USER",
  31. "value": "kieserver",
  32. "required": false
  33. },
  34. {
  35. "displayName": "KIE Server Password",
  36. "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).",
  37. "name": "KIE_SERVER_PASSWORD",
  38. "from": "[a-zA-Z]{6}[0-9]{1}!",
  39. "generate": "expression",
  40. "required": false
  41. },
  42. {
  43. "displayName": "Application Name",
  44. "description": "The name for the application.",
  45. "name": "APPLICATION_NAME",
  46. "value": "kie-app",
  47. "required": true
  48. },
  49. {
  50. "displayName": "Custom http Route Hostname",
  51. "description": "Custom hostname for http service route. Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>",
  52. "name": "HOSTNAME_HTTP",
  53. "value": "",
  54. "required": false
  55. },
  56. {
  57. "displayName": "Git Repository URL",
  58. "description": "Git source URI for application",
  59. "name": "SOURCE_REPOSITORY_URL",
  60. "value": "https://github.com/jboss-openshift/openshift-quickstarts.git",
  61. "required": true
  62. },
  63. {
  64. "displayName": "Git Reference",
  65. "description": "Git branch/tag reference",
  66. "name": "SOURCE_REPOSITORY_REF",
  67. "value": "1.3",
  68. "required": false
  69. },
  70. {
  71. "displayName": "Context Directory",
  72. "description": "Path within Git project to build; empty for root project directory.",
  73. "name": "CONTEXT_DIR",
  74. "value": "decisionserver/hellorules",
  75. "required": false
  76. },
  77. {
  78. "displayName": "Queues",
  79. "description": "Queue names",
  80. "name": "HORNETQ_QUEUES",
  81. "value": "",
  82. "required": false
  83. },
  84. {
  85. "displayName": "Topics",
  86. "description": "Topic names",
  87. "name": "HORNETQ_TOPICS",
  88. "value": "",
  89. "required": false
  90. },
  91. {
  92. "displayName": "HornetQ Password",
  93. "description": "HornetQ cluster admin password",
  94. "name": "HORNETQ_CLUSTER_PASSWORD",
  95. "from": "[a-zA-Z0-9]{8}",
  96. "generate": "expression",
  97. "required": true
  98. },
  99. {
  100. "displayName": "Github Webhook Secret",
  101. "description": "GitHub trigger secret",
  102. "name": "GITHUB_WEBHOOK_SECRET",
  103. "from": "[a-zA-Z0-9]{8}",
  104. "generate": "expression",
  105. "required": true
  106. },
  107. {
  108. "displayName": "Generic Webhook Secret",
  109. "description": "Generic build trigger secret",
  110. "name": "GENERIC_WEBHOOK_SECRET",
  111. "from": "[a-zA-Z0-9]{8}",
  112. "generate": "expression",
  113. "required": true
  114. },
  115. {
  116. "displayName": "ImageStream Namespace",
  117. "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.",
  118. "name": "IMAGE_STREAM_NAMESPACE",
  119. "value": "openshift",
  120. "required": true
  121. },
  122. {
  123. "displayName": "Maven mirror URL",
  124. "description": "Maven mirror to use for S2I builds",
  125. "name": "MAVEN_MIRROR_URL",
  126. "value": "",
  127. "required": false
  128. },
  129. {
  130. "description": "List of directories from which archives will be copied into the deployment folder. If unspecified, all archives in /target will be copied.",
  131. "name": "ARTIFACT_DIR",
  132. "value": "",
  133. "required": false
  134. }
  135. ],
  136. "objects": [
  137. {
  138. "kind": "Service",
  139. "apiVersion": "v1",
  140. "spec": {
  141. "ports": [
  142. {
  143. "port": 8080,
  144. "targetPort": 8080
  145. }
  146. ],
  147. "selector": {
  148. "deploymentConfig": "${APPLICATION_NAME}"
  149. }
  150. },
  151. "metadata": {
  152. "name": "${APPLICATION_NAME}",
  153. "labels": {
  154. "application": "${APPLICATION_NAME}"
  155. },
  156. "annotations": {
  157. "description": "The web server's http port."
  158. }
  159. }
  160. },
  161. {
  162. "kind": "Route",
  163. "apiVersion": "v1",
  164. "id": "${APPLICATION_NAME}-http",
  165. "metadata": {
  166. "name": "${APPLICATION_NAME}",
  167. "labels": {
  168. "application": "${APPLICATION_NAME}"
  169. },
  170. "annotations": {
  171. "description": "Route for application's http service."
  172. }
  173. },
  174. "spec": {
  175. "host": "${HOSTNAME_HTTP}",
  176. "to": {
  177. "name": "${APPLICATION_NAME}"
  178. }
  179. }
  180. },
  181. {
  182. "kind": "ImageStream",
  183. "apiVersion": "v1",
  184. "metadata": {
  185. "name": "${APPLICATION_NAME}",
  186. "labels": {
  187. "application": "${APPLICATION_NAME}"
  188. }
  189. }
  190. },
  191. {
  192. "kind": "BuildConfig",
  193. "apiVersion": "v1",
  194. "metadata": {
  195. "name": "${APPLICATION_NAME}",
  196. "labels": {
  197. "application": "${APPLICATION_NAME}"
  198. }
  199. },
  200. "spec": {
  201. "source": {
  202. "type": "Git",
  203. "git": {
  204. "uri": "${SOURCE_REPOSITORY_URL}",
  205. "ref": "${SOURCE_REPOSITORY_REF}"
  206. },
  207. "contextDir": "${CONTEXT_DIR}"
  208. },
  209. "strategy": {
  210. "type": "Source",
  211. "sourceStrategy": {
  212. "env": [
  213. {
  214. "name": "KIE_CONTAINER_DEPLOYMENT",
  215. "value": "${KIE_CONTAINER_DEPLOYMENT}"
  216. },
  217. {
  218. "name": "MAVEN_MIRROR_URL",
  219. "value": "${MAVEN_MIRROR_URL}"
  220. },
  221. {
  222. "name": "ARTIFACT_DIR",
  223. "value": "${ARTIFACT_DIR}"
  224. }
  225. ],
  226. "forcePull": true,
  227. "from": {
  228. "kind": "ImageStreamTag",
  229. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  230. "name": "jboss-decisionserver64-openshift:1.1"
  231. }
  232. }
  233. },
  234. "output": {
  235. "to": {
  236. "kind": "ImageStreamTag",
  237. "name": "${APPLICATION_NAME}:latest"
  238. }
  239. },
  240. "triggers": [
  241. {
  242. "type": "GitHub",
  243. "github": {
  244. "secret": "${GITHUB_WEBHOOK_SECRET}"
  245. }
  246. },
  247. {
  248. "type": "Generic",
  249. "generic": {
  250. "secret": "${GENERIC_WEBHOOK_SECRET}"
  251. }
  252. },
  253. {
  254. "type": "ImageChange",
  255. "imageChange": {}
  256. },
  257. {
  258. "type": "ConfigChange"
  259. }
  260. ]
  261. }
  262. },
  263. {
  264. "kind": "DeploymentConfig",
  265. "apiVersion": "v1",
  266. "metadata": {
  267. "name": "${APPLICATION_NAME}",
  268. "labels": {
  269. "application": "${APPLICATION_NAME}"
  270. }
  271. },
  272. "spec": {
  273. "strategy": {
  274. "type": "Recreate"
  275. },
  276. "triggers": [
  277. {
  278. "type": "ImageChange",
  279. "imageChangeParams": {
  280. "automatic": true,
  281. "containerNames": [
  282. "${APPLICATION_NAME}"
  283. ],
  284. "from": {
  285. "kind": "ImageStream",
  286. "name": "${APPLICATION_NAME}"
  287. }
  288. }
  289. },
  290. {
  291. "type": "ConfigChange"
  292. }
  293. ],
  294. "replicas": 1,
  295. "selector": {
  296. "deploymentConfig": "${APPLICATION_NAME}"
  297. },
  298. "template": {
  299. "metadata": {
  300. "name": "${APPLICATION_NAME}",
  301. "labels": {
  302. "deploymentConfig": "${APPLICATION_NAME}",
  303. "application": "${APPLICATION_NAME}"
  304. }
  305. },
  306. "spec": {
  307. "terminationGracePeriodSeconds": 60,
  308. "containers": [
  309. {
  310. "name": "${APPLICATION_NAME}",
  311. "image": "${APPLICATION_NAME}",
  312. "imagePullPolicy": "Always",
  313. "livenessProbe": {
  314. "exec": {
  315. "command": [
  316. "/bin/bash",
  317. "-c",
  318. "/opt/eap/bin/livenessProbe.sh"
  319. ]
  320. }
  321. },
  322. "readinessProbe": {
  323. "exec": {
  324. "command": [
  325. "/bin/bash",
  326. "-c",
  327. "/opt/eap/bin/readinessProbe.sh"
  328. ]
  329. }
  330. },
  331. "ports": [
  332. {
  333. "name": "jolokia",
  334. "containerPort": 8778,
  335. "protocol": "TCP"
  336. },
  337. {
  338. "name": "http",
  339. "containerPort": 8080,
  340. "protocol": "TCP"
  341. }
  342. ],
  343. "env": [
  344. {
  345. "name": "KIE_CONTAINER_DEPLOYMENT",
  346. "value": "${KIE_CONTAINER_DEPLOYMENT}"
  347. },
  348. {
  349. "name": "KIE_SERVER_USER",
  350. "value": "${KIE_SERVER_USER}"
  351. },
  352. {
  353. "name": "KIE_SERVER_PASSWORD",
  354. "value": "${KIE_SERVER_PASSWORD}"
  355. },
  356. {
  357. "name": "HORNETQ_CLUSTER_PASSWORD",
  358. "value": "${HORNETQ_CLUSTER_PASSWORD}"
  359. },
  360. {
  361. "name": "HORNETQ_QUEUES",
  362. "value": "${HORNETQ_QUEUES}"
  363. },
  364. {
  365. "name": "HORNETQ_TOPICS",
  366. "value": "${HORNETQ_TOPICS}"
  367. }
  368. ]
  369. }
  370. ]
  371. }
  372. }
  373. }
  374. }
  375. ]
  376. }