jws30-tomcat8-basic-s2i.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "annotations": {
  6. "iconClass": "icon-tomcat",
  7. "description": "Application template for JWS applications built using S2I.",
  8. "tags": "tomcat,tomcat8,java,jboss,xpaas",
  9. "version": "1.4.0",
  10. "openshift.io/display-name": "Red Hat JBoss Web Server 3.0 Tomcat 8 (no https)"
  11. },
  12. "name": "jws30-tomcat8-basic-s2i"
  13. },
  14. "labels": {
  15. "template": "jws30-tomcat8-basic-s2i",
  16. "xpaas": "1.4.0"
  17. },
  18. "message": "A new JWS application for Tomcat 8 has been created in your project. The username/password for administering your JWS is ${JWS_ADMIN_USERNAME}/${JWS_ADMIN_PASSWORD}.",
  19. "parameters": [
  20. {
  21. "displayName": "Application Name",
  22. "description": "The name for the application.",
  23. "name": "APPLICATION_NAME",
  24. "value": "jws-app",
  25. "required": true
  26. },
  27. {
  28. "displayName": "Custom http Route Hostname",
  29. "description": "Custom hostname for http service route. Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>",
  30. "name": "HOSTNAME_HTTP",
  31. "value": "",
  32. "required": false
  33. },
  34. {
  35. "displayName": "Git Repository URL",
  36. "description": "Git source URI for application",
  37. "name": "SOURCE_REPOSITORY_URL",
  38. "value": "https://github.com/jboss-openshift/openshift-quickstarts.git",
  39. "required": true
  40. },
  41. {
  42. "displayName": "Git Reference",
  43. "description": "Git branch/tag reference",
  44. "name": "SOURCE_REPOSITORY_REF",
  45. "value": "1.2",
  46. "required": false
  47. },
  48. {
  49. "displayName": "Context Directory",
  50. "description": "Path within Git project to build; empty for root project directory.",
  51. "name": "CONTEXT_DIR",
  52. "value": "tomcat-websocket-chat",
  53. "required": false
  54. },
  55. {
  56. "displayName": "JWS Admin Username",
  57. "description": "JWS Admin User",
  58. "name": "JWS_ADMIN_USERNAME",
  59. "from": "[a-zA-Z0-9]{8}",
  60. "generate": "expression",
  61. "required": true
  62. },
  63. {
  64. "displayName": "JWS Admin Password",
  65. "description": "JWS Admin Password",
  66. "name": "JWS_ADMIN_PASSWORD",
  67. "from": "[a-zA-Z0-9]{8}",
  68. "generate": "expression",
  69. "required": true
  70. },
  71. {
  72. "displayName": "Github Webhook Secret",
  73. "description": "GitHub trigger secret",
  74. "name": "GITHUB_WEBHOOK_SECRET",
  75. "from": "[a-zA-Z0-9]{8}",
  76. "generate": "expression",
  77. "required": true
  78. },
  79. {
  80. "displayName": "Generic Webhook Secret",
  81. "description": "Generic build trigger secret",
  82. "name": "GENERIC_WEBHOOK_SECRET",
  83. "from": "[a-zA-Z0-9]{8}",
  84. "generate": "expression",
  85. "required": true
  86. },
  87. {
  88. "displayName": "ImageStream Namespace",
  89. "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.",
  90. "name": "IMAGE_STREAM_NAMESPACE",
  91. "value": "openshift",
  92. "required": true
  93. },
  94. {
  95. "displayName": "Maven mirror URL",
  96. "description": "Maven mirror to use for S2I builds",
  97. "name": "MAVEN_MIRROR_URL",
  98. "value": "",
  99. "required": false
  100. },
  101. {
  102. "description": "List of directories from which archives will be copied into the deployment folder. If unspecified, all archives in /target will be copied.",
  103. "name": "ARTIFACT_DIR",
  104. "value": "",
  105. "required": false
  106. }
  107. ],
  108. "objects": [
  109. {
  110. "kind": "Service",
  111. "apiVersion": "v1",
  112. "spec": {
  113. "ports": [
  114. {
  115. "port": 8080,
  116. "targetPort": 8080
  117. }
  118. ],
  119. "selector": {
  120. "deploymentConfig": "${APPLICATION_NAME}"
  121. }
  122. },
  123. "metadata": {
  124. "name": "${APPLICATION_NAME}",
  125. "labels": {
  126. "application": "${APPLICATION_NAME}"
  127. },
  128. "annotations": {
  129. "description": "The web server's http port."
  130. }
  131. }
  132. },
  133. {
  134. "kind": "Route",
  135. "apiVersion": "v1",
  136. "id": "${APPLICATION_NAME}-http",
  137. "metadata": {
  138. "name": "${APPLICATION_NAME}",
  139. "labels": {
  140. "application": "${APPLICATION_NAME}"
  141. },
  142. "annotations": {
  143. "description": "Route for application's http service."
  144. }
  145. },
  146. "spec": {
  147. "host": "${HOSTNAME_HTTP}",
  148. "to": {
  149. "name": "${APPLICATION_NAME}"
  150. }
  151. }
  152. },
  153. {
  154. "kind": "ImageStream",
  155. "apiVersion": "v1",
  156. "metadata": {
  157. "name": "${APPLICATION_NAME}",
  158. "labels": {
  159. "application": "${APPLICATION_NAME}"
  160. }
  161. }
  162. },
  163. {
  164. "kind": "BuildConfig",
  165. "apiVersion": "v1",
  166. "metadata": {
  167. "name": "${APPLICATION_NAME}",
  168. "labels": {
  169. "application": "${APPLICATION_NAME}"
  170. }
  171. },
  172. "spec": {
  173. "source": {
  174. "type": "Git",
  175. "git": {
  176. "uri": "${SOURCE_REPOSITORY_URL}",
  177. "ref": "${SOURCE_REPOSITORY_REF}"
  178. },
  179. "contextDir": "${CONTEXT_DIR}"
  180. },
  181. "strategy": {
  182. "type": "Source",
  183. "sourceStrategy": {
  184. "env": [
  185. {
  186. "name": "MAVEN_MIRROR_URL",
  187. "value": "${MAVEN_MIRROR_URL}"
  188. },
  189. {
  190. "name": "ARTIFACT_DIR",
  191. "value": "${ARTIFACT_DIR}"
  192. }
  193. ],
  194. "forcePull": true,
  195. "from": {
  196. "kind": "ImageStreamTag",
  197. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  198. "name": "jboss-webserver30-tomcat8-openshift:1.3"
  199. }
  200. }
  201. },
  202. "output": {
  203. "to": {
  204. "kind": "ImageStreamTag",
  205. "name": "${APPLICATION_NAME}:latest"
  206. }
  207. },
  208. "triggers": [
  209. {
  210. "type": "GitHub",
  211. "github": {
  212. "secret": "${GITHUB_WEBHOOK_SECRET}"
  213. }
  214. },
  215. {
  216. "type": "Generic",
  217. "generic": {
  218. "secret": "${GENERIC_WEBHOOK_SECRET}"
  219. }
  220. },
  221. {
  222. "type": "ImageChange",
  223. "imageChange": {}
  224. },
  225. {
  226. "type": "ConfigChange"
  227. }
  228. ]
  229. }
  230. },
  231. {
  232. "kind": "DeploymentConfig",
  233. "apiVersion": "v1",
  234. "metadata": {
  235. "name": "${APPLICATION_NAME}",
  236. "labels": {
  237. "application": "${APPLICATION_NAME}"
  238. }
  239. },
  240. "spec": {
  241. "strategy": {
  242. "type": "Recreate"
  243. },
  244. "triggers": [
  245. {
  246. "type": "ImageChange",
  247. "imageChangeParams": {
  248. "automatic": true,
  249. "containerNames": [
  250. "${APPLICATION_NAME}"
  251. ],
  252. "from": {
  253. "kind": "ImageStreamTag",
  254. "name": "${APPLICATION_NAME}:latest"
  255. }
  256. }
  257. },
  258. {
  259. "type": "ConfigChange"
  260. }
  261. ],
  262. "replicas": 1,
  263. "selector": {
  264. "deploymentConfig": "${APPLICATION_NAME}"
  265. },
  266. "template": {
  267. "metadata": {
  268. "name": "${APPLICATION_NAME}",
  269. "labels": {
  270. "deploymentConfig": "${APPLICATION_NAME}",
  271. "application": "${APPLICATION_NAME}"
  272. }
  273. },
  274. "spec": {
  275. "terminationGracePeriodSeconds": 60,
  276. "containers": [
  277. {
  278. "name": "${APPLICATION_NAME}",
  279. "image": "${APPLICATION_NAME}",
  280. "imagePullPolicy": "Always",
  281. "readinessProbe": {
  282. "exec": {
  283. "command": [
  284. "/bin/bash",
  285. "-c",
  286. "curl --noproxy '*' -s -u ${JWS_ADMIN_USERNAME}:${JWS_ADMIN_PASSWORD} 'http://localhost:8080/manager/jmxproxy/?get=Catalina%3Atype%3DServer&att=stateName' |grep -iq 'stateName *= *STARTED'"
  287. ]
  288. }
  289. },
  290. "ports": [
  291. {
  292. "name": "jolokia",
  293. "containerPort": 8778,
  294. "protocol": "TCP"
  295. },
  296. {
  297. "name": "http",
  298. "containerPort": 8080,
  299. "protocol": "TCP"
  300. }
  301. ],
  302. "env": [
  303. {
  304. "name": "JWS_ADMIN_USERNAME",
  305. "value": "${JWS_ADMIN_USERNAME}"
  306. },
  307. {
  308. "name": "JWS_ADMIN_PASSWORD",
  309. "value": "${JWS_ADMIN_PASSWORD}"
  310. }
  311. ]
  312. }
  313. ]
  314. }
  315. }
  316. }
  317. }
  318. ]
  319. }