eap64-basic-s2i.json 15 KB

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