jws31-tomcat7-basic-s2i.json 12 KB

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