jws30-tomcat8-mysql-s2i.json 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "annotations": {
  6. "iconClass": "icon-tomcat",
  7. "description": "Application template for JWS MySQL 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 + MySQL (Ephemeral with https)"
  11. },
  12. "name": "jws30-tomcat8-mysql-s2i"
  13. },
  14. "labels": {
  15. "template": "jws30-tomcat8-mysql-s2i",
  16. "xpaas": "1.4.0"
  17. },
  18. "message": "A new JWS application for Tomcat 8 (using MySQL) has been created in your project. The username/password for administering your JWS is ${JWS_ADMIN_USERNAME}/${JWS_ADMIN_PASSWORD}. For accessing the MySQL database \"${DB_DATABASE}\" use the credentials ${DB_USERNAME}/${DB_PASSWORD}. Please be sure to create the \"jws-service-account\" service account and the secret named \"${JWS_HTTPS_SECRET}\" containing the ${JWS_HTTPS_CERTIFICATE} file used for serving secure content.",
  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": "Custom https Route Hostname",
  36. "description": "Custom hostname for https service route. Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>",
  37. "name": "HOSTNAME_HTTPS",
  38. "value": "",
  39. "required": false
  40. },
  41. {
  42. "displayName": "Git Repository URL",
  43. "description": "Git source URI for application",
  44. "name": "SOURCE_REPOSITORY_URL",
  45. "value": "https://github.com/jboss-openshift/openshift-quickstarts",
  46. "required": true
  47. },
  48. {
  49. "displayName": "Git Reference",
  50. "description": "Git branch/tag reference",
  51. "name": "SOURCE_REPOSITORY_REF",
  52. "value": "1.2",
  53. "required": false
  54. },
  55. {
  56. "displayName": "Context Directory",
  57. "description": "Path within Git project to build; empty for root project directory.",
  58. "name": "CONTEXT_DIR",
  59. "value": "todolist/todolist-jdbc",
  60. "required": false
  61. },
  62. {
  63. "displayName": "Database JNDI Name",
  64. "description": "Database JNDI name used by application to resolve the datasource, e.g. jboss/datasources/mysqlDS",
  65. "name": "DB_JNDI",
  66. "value": "jboss/datasources/defaultDS",
  67. "required": false
  68. },
  69. {
  70. "displayName": "Database Name",
  71. "description": "Database name",
  72. "name": "DB_DATABASE",
  73. "value": "root",
  74. "required": true
  75. },
  76. {
  77. "displayName": "Secret Name",
  78. "description": "The name of the secret containing the certificate files",
  79. "name": "JWS_HTTPS_SECRET",
  80. "value": "jws-app-secret",
  81. "required": true
  82. },
  83. {
  84. "displayName": "Certificate Name",
  85. "description": "The name of the certificate file within the secret",
  86. "name": "JWS_HTTPS_CERTIFICATE",
  87. "value": "server.crt",
  88. "required": false
  89. },
  90. {
  91. "displayName": "Certificate Key Name",
  92. "description": "The name of the certificate key file within the secret",
  93. "name": "JWS_HTTPS_CERTIFICATE_KEY",
  94. "value": "server.key",
  95. "required": false
  96. },
  97. {
  98. "displayName": "Certificate Password",
  99. "description": "The certificate password",
  100. "name": "JWS_HTTPS_CERTIFICATE_PASSWORD",
  101. "value": "",
  102. "required": false
  103. },
  104. {
  105. "displayName": "Datasource Minimum Pool Size",
  106. "description": "Sets xa-pool/min-pool-size for the configured datasource.",
  107. "name": "DB_MIN_POOL_SIZE",
  108. "required": false
  109. },
  110. {
  111. "displayName": "Datasource Maximum Pool Size",
  112. "description": "Sets xa-pool/max-pool-size for the configured datasource.",
  113. "name": "DB_MAX_POOL_SIZE",
  114. "required": false
  115. },
  116. {
  117. "displayName": "Datasource Transaction Isolation",
  118. "description": "Sets transaction-isolation for the configured datasource.",
  119. "name": "DB_TX_ISOLATION",
  120. "required": false
  121. },
  122. {
  123. "displayName": "MySQL Lower Case Table Names",
  124. "description": "Sets how the table names are stored and compared.",
  125. "name": "MYSQL_LOWER_CASE_TABLE_NAMES",
  126. "required": false
  127. },
  128. {
  129. "displayName": "MySQL Maximum number of connections",
  130. "description": "The maximum permitted number of simultaneous client connections.",
  131. "name": "MYSQL_MAX_CONNECTIONS",
  132. "required": false
  133. },
  134. {
  135. "displayName": "MySQL FullText Minimum Word Length",
  136. "description": "The minimum length of the word to be included in a FULLTEXT index.",
  137. "name": "MYSQL_FT_MIN_WORD_LEN",
  138. "required": false
  139. },
  140. {
  141. "displayName": "MySQL FullText Maximum Word Length",
  142. "description": "The maximum length of the word to be included in a FULLTEXT index.",
  143. "name": "MYSQL_FT_MAX_WORD_LEN",
  144. "required": false
  145. },
  146. {
  147. "displayName": "MySQL AIO",
  148. "description": "Controls the innodb_use_native_aio setting value if the native AIO is broken.",
  149. "name": "MYSQL_AIO",
  150. "required": false
  151. },
  152. {
  153. "displayName": "Database Username",
  154. "description": "Database user name",
  155. "name": "DB_USERNAME",
  156. "from": "user[a-zA-Z0-9]{3}",
  157. "generate": "expression",
  158. "required": true
  159. },
  160. {
  161. "displayName": "Database Password",
  162. "description": "Database user password",
  163. "name": "DB_PASSWORD",
  164. "from": "[a-zA-Z0-9]{8}",
  165. "generate": "expression",
  166. "required": true
  167. },
  168. {
  169. "displayName": "JWS Admin Username",
  170. "description": "JWS Admin User",
  171. "name": "JWS_ADMIN_USERNAME",
  172. "from": "[a-zA-Z0-9]{8}",
  173. "generate": "expression",
  174. "required": true
  175. },
  176. {
  177. "displayName": "JWS Admin Password",
  178. "description": "JWS Admin Password",
  179. "name": "JWS_ADMIN_PASSWORD",
  180. "from": "[a-zA-Z0-9]{8}",
  181. "generate": "expression",
  182. "required": true
  183. },
  184. {
  185. "displayName": "Github Webhook Secret",
  186. "description": "GitHub trigger secret",
  187. "name": "GITHUB_WEBHOOK_SECRET",
  188. "from": "[a-zA-Z0-9]{8}",
  189. "generate": "expression",
  190. "required": true
  191. },
  192. {
  193. "displayName": "Generic Webhook Secret",
  194. "description": "Generic build trigger secret",
  195. "name": "GENERIC_WEBHOOK_SECRET",
  196. "from": "[a-zA-Z0-9]{8}",
  197. "generate": "expression",
  198. "required": true
  199. },
  200. {
  201. "displayName": "ImageStream Namespace",
  202. "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.",
  203. "name": "IMAGE_STREAM_NAMESPACE",
  204. "value": "openshift",
  205. "required": true
  206. },
  207. {
  208. "displayName": "Maven mirror URL",
  209. "description": "Maven mirror to use for S2I builds",
  210. "name": "MAVEN_MIRROR_URL",
  211. "value": "",
  212. "required": false
  213. },
  214. {
  215. "description": "List of directories from which archives will be copied into the deployment folder. If unspecified, all archives in /target will be copied.",
  216. "name": "ARTIFACT_DIR",
  217. "value": "",
  218. "required": false
  219. },
  220. {
  221. "displayName": "MySQL Image Stream Tag",
  222. "description": "The tag to use for the \"mysql\" image stream. Typically, this aligns with the major.minor version of MySQL.",
  223. "name": "MYSQL_IMAGE_STREAM_TAG",
  224. "value": "5.7",
  225. "required": true
  226. }
  227. ],
  228. "objects": [
  229. {
  230. "kind": "Service",
  231. "apiVersion": "v1",
  232. "spec": {
  233. "ports": [
  234. {
  235. "port": 8080,
  236. "targetPort": 8080
  237. }
  238. ],
  239. "selector": {
  240. "deploymentConfig": "${APPLICATION_NAME}"
  241. }
  242. },
  243. "metadata": {
  244. "name": "${APPLICATION_NAME}",
  245. "labels": {
  246. "application": "${APPLICATION_NAME}"
  247. },
  248. "annotations": {
  249. "description": "The web server's http port.",
  250. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${APPLICATION_NAME}-mysql\", \"kind\": \"Service\"}]"
  251. }
  252. }
  253. },
  254. {
  255. "kind": "Service",
  256. "apiVersion": "v1",
  257. "spec": {
  258. "ports": [
  259. {
  260. "port": 8443,
  261. "targetPort": 8443
  262. }
  263. ],
  264. "selector": {
  265. "deploymentConfig": "${APPLICATION_NAME}"
  266. }
  267. },
  268. "metadata": {
  269. "name": "secure-${APPLICATION_NAME}",
  270. "labels": {
  271. "application": "${APPLICATION_NAME}"
  272. },
  273. "annotations": {
  274. "description": "The web server's https port.",
  275. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${APPLICATION_NAME}-mysql\", \"kind\": \"Service\"}]"
  276. }
  277. }
  278. },
  279. {
  280. "kind": "Service",
  281. "apiVersion": "v1",
  282. "spec": {
  283. "ports": [
  284. {
  285. "port": 3306,
  286. "targetPort": 3306
  287. }
  288. ],
  289. "selector": {
  290. "deploymentConfig": "${APPLICATION_NAME}-mysql"
  291. }
  292. },
  293. "metadata": {
  294. "name": "${APPLICATION_NAME}-mysql",
  295. "labels": {
  296. "application": "${APPLICATION_NAME}"
  297. },
  298. "annotations": {
  299. "description": "The database server's port."
  300. }
  301. }
  302. },
  303. {
  304. "kind": "Route",
  305. "apiVersion": "v1",
  306. "id": "${APPLICATION_NAME}-http",
  307. "metadata": {
  308. "name": "${APPLICATION_NAME}",
  309. "labels": {
  310. "application": "${APPLICATION_NAME}"
  311. },
  312. "annotations": {
  313. "description": "Route for application's http service."
  314. }
  315. },
  316. "spec": {
  317. "host": "${HOSTNAME_HTTP}",
  318. "to": {
  319. "name": "${APPLICATION_NAME}"
  320. }
  321. }
  322. },
  323. {
  324. "kind": "Route",
  325. "apiVersion": "v1",
  326. "id": "${APPLICATION_NAME}-https",
  327. "metadata": {
  328. "name": "secure-${APPLICATION_NAME}",
  329. "labels": {
  330. "application": "${APPLICATION_NAME}"
  331. },
  332. "annotations": {
  333. "description": "Route for application's https service."
  334. }
  335. },
  336. "spec": {
  337. "host": "${HOSTNAME_HTTPS}",
  338. "to": {
  339. "name": "secure-${APPLICATION_NAME}"
  340. },
  341. "tls": {
  342. "termination": "passthrough"
  343. }
  344. }
  345. },
  346. {
  347. "kind": "ImageStream",
  348. "apiVersion": "v1",
  349. "metadata": {
  350. "name": "${APPLICATION_NAME}",
  351. "labels": {
  352. "application": "${APPLICATION_NAME}"
  353. }
  354. }
  355. },
  356. {
  357. "kind": "BuildConfig",
  358. "apiVersion": "v1",
  359. "metadata": {
  360. "name": "${APPLICATION_NAME}",
  361. "labels": {
  362. "application": "${APPLICATION_NAME}"
  363. }
  364. },
  365. "spec": {
  366. "source": {
  367. "type": "Git",
  368. "git": {
  369. "uri": "${SOURCE_REPOSITORY_URL}",
  370. "ref": "${SOURCE_REPOSITORY_REF}"
  371. },
  372. "contextDir": "${CONTEXT_DIR}"
  373. },
  374. "strategy": {
  375. "type": "Source",
  376. "sourceStrategy": {
  377. "env": [
  378. {
  379. "name": "MAVEN_MIRROR_URL",
  380. "value": "${MAVEN_MIRROR_URL}"
  381. },
  382. {
  383. "name": "ARTIFACT_DIR",
  384. "value": "${ARTIFACT_DIR}"
  385. }
  386. ],
  387. "forcePull": true,
  388. "from": {
  389. "kind": "ImageStreamTag",
  390. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  391. "name": "jboss-webserver30-tomcat8-openshift:1.3"
  392. }
  393. }
  394. },
  395. "output": {
  396. "to": {
  397. "kind": "ImageStreamTag",
  398. "name": "${APPLICATION_NAME}:latest"
  399. }
  400. },
  401. "triggers": [
  402. {
  403. "type": "GitHub",
  404. "github": {
  405. "secret": "${GITHUB_WEBHOOK_SECRET}"
  406. }
  407. },
  408. {
  409. "type": "Generic",
  410. "generic": {
  411. "secret": "${GENERIC_WEBHOOK_SECRET}"
  412. }
  413. },
  414. {
  415. "type": "ImageChange",
  416. "imageChange": {}
  417. },
  418. {
  419. "type": "ConfigChange"
  420. }
  421. ]
  422. }
  423. },
  424. {
  425. "kind": "DeploymentConfig",
  426. "apiVersion": "v1",
  427. "metadata": {
  428. "name": "${APPLICATION_NAME}",
  429. "labels": {
  430. "application": "${APPLICATION_NAME}"
  431. }
  432. },
  433. "spec": {
  434. "strategy": {
  435. "type": "Recreate"
  436. },
  437. "triggers": [
  438. {
  439. "type": "ImageChange",
  440. "imageChangeParams": {
  441. "automatic": true,
  442. "containerNames": [
  443. "${APPLICATION_NAME}"
  444. ],
  445. "from": {
  446. "kind": "ImageStreamTag",
  447. "name": "${APPLICATION_NAME}:latest"
  448. }
  449. }
  450. },
  451. {
  452. "type": "ConfigChange"
  453. }
  454. ],
  455. "replicas": 1,
  456. "selector": {
  457. "deploymentConfig": "${APPLICATION_NAME}"
  458. },
  459. "template": {
  460. "metadata": {
  461. "name": "${APPLICATION_NAME}",
  462. "labels": {
  463. "deploymentConfig": "${APPLICATION_NAME}",
  464. "application": "${APPLICATION_NAME}"
  465. }
  466. },
  467. "spec": {
  468. "serviceAccountName": "jws-service-account",
  469. "terminationGracePeriodSeconds": 60,
  470. "containers": [
  471. {
  472. "name": "${APPLICATION_NAME}",
  473. "image": "${APPLICATION_NAME}",
  474. "imagePullPolicy": "Always",
  475. "readinessProbe": {
  476. "exec": {
  477. "command": [
  478. "/bin/bash",
  479. "-c",
  480. "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'"
  481. ]
  482. }
  483. },
  484. "volumeMounts": [
  485. {
  486. "name": "jws-certificate-volume",
  487. "mountPath": "/etc/jws-secret-volume",
  488. "readOnly": true
  489. }
  490. ],
  491. "ports": [
  492. {
  493. "name": "jolokia",
  494. "containerPort": 8778,
  495. "protocol": "TCP"
  496. },
  497. {
  498. "name": "http",
  499. "containerPort": 8080,
  500. "protocol": "TCP"
  501. },
  502. {
  503. "name": "https",
  504. "containerPort": 8443,
  505. "protocol": "TCP"
  506. }
  507. ],
  508. "env": [
  509. {
  510. "name": "DB_SERVICE_PREFIX_MAPPING",
  511. "value": "${APPLICATION_NAME}-mysql=DB"
  512. },
  513. {
  514. "name": "DB_JNDI",
  515. "value": "${DB_JNDI}"
  516. },
  517. {
  518. "name": "DB_USERNAME",
  519. "value": "${DB_USERNAME}"
  520. },
  521. {
  522. "name": "DB_PASSWORD",
  523. "value": "${DB_PASSWORD}"
  524. },
  525. {
  526. "name": "DB_DATABASE",
  527. "value": "${DB_DATABASE}"
  528. },
  529. {
  530. "name": "DB_MIN_POOL_SIZE",
  531. "value": "${DB_MIN_POOL_SIZE}"
  532. },
  533. {
  534. "name": "DB_MAX_POOL_SIZE",
  535. "value": "${DB_MAX_POOL_SIZE}"
  536. },
  537. {
  538. "name": "DB_TX_ISOLATION",
  539. "value": "${DB_TX_ISOLATION}"
  540. },
  541. {
  542. "name": "JWS_HTTPS_CERTIFICATE_DIR",
  543. "value": "/etc/jws-secret-volume"
  544. },
  545. {
  546. "name": "JWS_HTTPS_CERTIFICATE",
  547. "value": "${JWS_HTTPS_CERTIFICATE}"
  548. },
  549. {
  550. "name": "JWS_HTTPS_CERTIFICATE_KEY",
  551. "value": "${JWS_HTTPS_CERTIFICATE_KEY}"
  552. },
  553. {
  554. "name": "JWS_HTTPS_CERTIFICATE_PASSWORD",
  555. "value": "${JWS_HTTPS_CERTIFICATE_PASSWORD}"
  556. },
  557. {
  558. "name": "JWS_ADMIN_USERNAME",
  559. "value": "${JWS_ADMIN_USERNAME}"
  560. },
  561. {
  562. "name": "JWS_ADMIN_PASSWORD",
  563. "value": "${JWS_ADMIN_PASSWORD}"
  564. }
  565. ]
  566. }
  567. ],
  568. "volumes": [
  569. {
  570. "name": "jws-certificate-volume",
  571. "secret": {
  572. "secretName": "${JWS_HTTPS_SECRET}"
  573. }
  574. }
  575. ]
  576. }
  577. }
  578. }
  579. },
  580. {
  581. "kind": "DeploymentConfig",
  582. "apiVersion": "v1",
  583. "metadata": {
  584. "name": "${APPLICATION_NAME}-mysql",
  585. "labels": {
  586. "application": "${APPLICATION_NAME}"
  587. }
  588. },
  589. "spec": {
  590. "strategy": {
  591. "type": "Recreate"
  592. },
  593. "triggers": [
  594. {
  595. "type": "ImageChange",
  596. "imageChangeParams": {
  597. "automatic": true,
  598. "containerNames": [
  599. "${APPLICATION_NAME}-mysql"
  600. ],
  601. "from": {
  602. "kind": "ImageStreamTag",
  603. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  604. "name": "mysql:${MYSQL_IMAGE_STREAM_TAG}"
  605. }
  606. }
  607. },
  608. {
  609. "type": "ConfigChange"
  610. }
  611. ],
  612. "replicas": 1,
  613. "selector": {
  614. "deploymentConfig": "${APPLICATION_NAME}-mysql"
  615. },
  616. "template": {
  617. "metadata": {
  618. "name": "${APPLICATION_NAME}-mysql",
  619. "labels": {
  620. "deploymentConfig": "${APPLICATION_NAME}-mysql",
  621. "application": "${APPLICATION_NAME}"
  622. }
  623. },
  624. "spec": {
  625. "terminationGracePeriodSeconds": 60,
  626. "containers": [
  627. {
  628. "name": "${APPLICATION_NAME}-mysql",
  629. "image": "mysql",
  630. "ports": [
  631. {
  632. "containerPort": 3306,
  633. "protocol": "TCP"
  634. }
  635. ],
  636. "env": [
  637. {
  638. "name": "MYSQL_USER",
  639. "value": "${DB_USERNAME}"
  640. },
  641. {
  642. "name": "MYSQL_PASSWORD",
  643. "value": "${DB_PASSWORD}"
  644. },
  645. {
  646. "name": "MYSQL_DATABASE",
  647. "value": "${DB_DATABASE}"
  648. },
  649. {
  650. "name": "MYSQL_LOWER_CASE_TABLE_NAMES",
  651. "value": "${MYSQL_LOWER_CASE_TABLE_NAMES}"
  652. },
  653. {
  654. "name": "MYSQL_MAX_CONNECTIONS",
  655. "value": "${MYSQL_MAX_CONNECTIONS}"
  656. },
  657. {
  658. "name": "MYSQL_FT_MIN_WORD_LEN",
  659. "value": "${MYSQL_FT_MIN_WORD_LEN}"
  660. },
  661. {
  662. "name": "MYSQL_FT_MAX_WORD_LEN",
  663. "value": "${MYSQL_FT_MAX_WORD_LEN}"
  664. },
  665. {
  666. "name": "MYSQL_AIO",
  667. "value": "${MYSQL_AIO}"
  668. }
  669. ]
  670. }
  671. ]
  672. }
  673. }
  674. }
  675. }
  676. ]
  677. }