jws31-tomcat8-basic-s2i.json 12 KB

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