eap64-https-s2i.json 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "annotations": {
  6. "iconClass": "icon-eap",
  7. "tags": "eap,javaee,java,jboss,hidden",
  8. "version": "1.4.7",
  9. "openshift.io/display-name": "JBoss EAP 6.4 (with 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 secure communication using https.",
  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-https-s2i"
  17. },
  18. "labels": {
  19. "template": "eap64-https-s2i",
  20. "xpaas": "1.4.7"
  21. },
  22. "message": "A new EAP 6 based application with SSL support has been created in your project. Please be sure to create the \"${SERVICE_ACCOUNT_NAME}\" service account and the following secrets: \"${HTTPS_SECRET}\" containing the ${HTTPS_KEYSTORE} file used for serving secure content; \"${JGROUPS_ENCRYPT_SECRET}\" containing the ${JGROUPS_ENCRYPT_KEYSTORE} file used for securing JGroups communications.",
  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": "Custom https Route Hostname",
  40. "description": "Custom hostname for https service route. Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>",
  41. "name": "HOSTNAME_HTTPS",
  42. "value": "",
  43. "required": false
  44. },
  45. {
  46. "displayName": "Git Repository URL",
  47. "description": "Git source URI for application",
  48. "name": "SOURCE_REPOSITORY_URL",
  49. "value": "https://github.com/jboss-developer/jboss-eap-quickstarts",
  50. "required": true
  51. },
  52. {
  53. "displayName": "Git Reference",
  54. "description": "Git branch/tag reference",
  55. "name": "SOURCE_REPOSITORY_REF",
  56. "value": "6.4.x",
  57. "required": false
  58. },
  59. {
  60. "displayName": "Context Directory",
  61. "description": "Path within Git project to build; empty for root project directory.",
  62. "name": "CONTEXT_DIR",
  63. "value": "kitchensink",
  64. "required": false
  65. },
  66. {
  67. "displayName": "Queues",
  68. "description": "Queue names",
  69. "name": "HORNETQ_QUEUES",
  70. "value": "",
  71. "required": false
  72. },
  73. {
  74. "displayName": "Topics",
  75. "description": "Topic names",
  76. "name": "HORNETQ_TOPICS",
  77. "value": "",
  78. "required": false
  79. },
  80. {
  81. "displayName": "Service Account Name",
  82. "description": "The name of the service account to use for the deployment. The service account should be configured to allow useage of the secret(s) specified by HTTPS_SECRET and JGROUPS_ENCRYPT_SECRET.",
  83. "name": "SERVICE_ACCOUNT_NAME",
  84. "value": "eap-service-account",
  85. "required": true
  86. },
  87. {
  88. "displayName": "Server Keystore Secret Name",
  89. "description": "The name of the secret containing the keystore file",
  90. "name": "HTTPS_SECRET",
  91. "value": "eap-app-secret",
  92. "required": true
  93. },
  94. {
  95. "displayName": "Server Keystore Filename",
  96. "description": "The name of the keystore file within the secret",
  97. "name": "HTTPS_KEYSTORE",
  98. "value": "keystore.jks",
  99. "required": false
  100. },
  101. {
  102. "displayName": "Server Keystore Type",
  103. "description": "The type of the keystore file (JKS or JCEKS)",
  104. "name": "HTTPS_KEYSTORE_TYPE",
  105. "value": "",
  106. "required": false
  107. },
  108. {
  109. "displayName": "Server Certificate Name",
  110. "description": "The name associated with the server certificate",
  111. "name": "HTTPS_NAME",
  112. "value": "",
  113. "required": false
  114. },
  115. {
  116. "displayName": "Server Keystore Password",
  117. "description": "The password for the keystore and certificate",
  118. "name": "HTTPS_PASSWORD",
  119. "value": "",
  120. "required": false
  121. },
  122. {
  123. "displayName": "HornetQ Password",
  124. "description": "HornetQ cluster admin password",
  125. "name": "HORNETQ_CLUSTER_PASSWORD",
  126. "from": "[a-zA-Z0-9]{8}",
  127. "generate": "expression",
  128. "required": true
  129. },
  130. {
  131. "displayName": "Github Webhook Secret",
  132. "description": "GitHub trigger secret",
  133. "name": "GITHUB_WEBHOOK_SECRET",
  134. "from": "[a-zA-Z0-9]{8}",
  135. "generate": "expression",
  136. "required": true
  137. },
  138. {
  139. "displayName": "Generic Webhook Secret",
  140. "description": "Generic build trigger secret",
  141. "name": "GENERIC_WEBHOOK_SECRET",
  142. "from": "[a-zA-Z0-9]{8}",
  143. "generate": "expression",
  144. "required": true
  145. },
  146. {
  147. "displayName": "ImageStream Namespace",
  148. "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.",
  149. "name": "IMAGE_STREAM_NAMESPACE",
  150. "value": "openshift",
  151. "required": true
  152. },
  153. {
  154. "displayName": "JGroups Secret Name",
  155. "description": "The name of the secret containing the keystore file",
  156. "name": "JGROUPS_ENCRYPT_SECRET",
  157. "value": "eap-app-secret",
  158. "required": false
  159. },
  160. {
  161. "displayName": "JGroups Keystore Filename",
  162. "description": "The name of the keystore file within the secret",
  163. "name": "JGROUPS_ENCRYPT_KEYSTORE",
  164. "value": "jgroups.jceks",
  165. "required": false
  166. },
  167. {
  168. "displayName": "JGroups Certificate Name",
  169. "description": "The name associated with the server certificate",
  170. "name": "JGROUPS_ENCRYPT_NAME",
  171. "value": "",
  172. "required": false
  173. },
  174. {
  175. "displayName": "JGroups Keystore Password",
  176. "description": "The password for the keystore and certificate",
  177. "name": "JGROUPS_ENCRYPT_PASSWORD",
  178. "value": "",
  179. "required": false
  180. },
  181. {
  182. "displayName": "JGroups Cluster Password",
  183. "description": "JGroups cluster password",
  184. "name": "JGROUPS_CLUSTER_PASSWORD",
  185. "from": "[a-zA-Z0-9]{8}",
  186. "generate": "expression",
  187. "required": true
  188. },
  189. {
  190. "displayName": "Deploy Exploded Archives",
  191. "description": "Controls whether exploded deployment content should be automatically deployed",
  192. "name": "AUTO_DEPLOY_EXPLODED",
  193. "value": "false",
  194. "required": false
  195. },
  196. {
  197. "displayName": "Maven mirror URL",
  198. "description": "Maven mirror to use for S2I builds",
  199. "name": "MAVEN_MIRROR_URL",
  200. "value": "",
  201. "required": false
  202. },
  203. {
  204. "description": "List of directories from which archives will be copied into the deployment folder. If unspecified, all archives in /target will be copied.",
  205. "name": "ARTIFACT_DIR",
  206. "value": "",
  207. "required": false
  208. }
  209. ],
  210. "objects": [
  211. {
  212. "kind": "Service",
  213. "apiVersion": "v1",
  214. "spec": {
  215. "ports": [
  216. {
  217. "port": 8080,
  218. "targetPort": 8080
  219. }
  220. ],
  221. "selector": {
  222. "deploymentConfig": "${APPLICATION_NAME}"
  223. }
  224. },
  225. "metadata": {
  226. "name": "${APPLICATION_NAME}",
  227. "labels": {
  228. "application": "${APPLICATION_NAME}"
  229. },
  230. "annotations": {
  231. "description": "The web server's http port."
  232. }
  233. }
  234. },
  235. {
  236. "kind": "Service",
  237. "apiVersion": "v1",
  238. "spec": {
  239. "ports": [
  240. {
  241. "port": 8443,
  242. "targetPort": 8443
  243. }
  244. ],
  245. "selector": {
  246. "deploymentConfig": "${APPLICATION_NAME}"
  247. }
  248. },
  249. "metadata": {
  250. "name": "secure-${APPLICATION_NAME}",
  251. "labels": {
  252. "application": "${APPLICATION_NAME}"
  253. },
  254. "annotations": {
  255. "description": "The web server's https port."
  256. }
  257. }
  258. },
  259. {
  260. "kind": "Route",
  261. "apiVersion": "v1",
  262. "id": "${APPLICATION_NAME}-http",
  263. "metadata": {
  264. "name": "${APPLICATION_NAME}",
  265. "labels": {
  266. "application": "${APPLICATION_NAME}"
  267. },
  268. "annotations": {
  269. "description": "Route for application's http service."
  270. }
  271. },
  272. "spec": {
  273. "host": "${HOSTNAME_HTTP}",
  274. "to": {
  275. "name": "${APPLICATION_NAME}"
  276. }
  277. }
  278. },
  279. {
  280. "kind": "Route",
  281. "apiVersion": "v1",
  282. "id": "${APPLICATION_NAME}-https",
  283. "metadata": {
  284. "name": "secure-${APPLICATION_NAME}",
  285. "labels": {
  286. "application": "${APPLICATION_NAME}"
  287. },
  288. "annotations": {
  289. "description": "Route for application's https service."
  290. }
  291. },
  292. "spec": {
  293. "host": "${HOSTNAME_HTTPS}",
  294. "to": {
  295. "name": "secure-${APPLICATION_NAME}"
  296. },
  297. "tls": {
  298. "termination": "passthrough"
  299. }
  300. }
  301. },
  302. {
  303. "kind": "ImageStream",
  304. "apiVersion": "v1",
  305. "metadata": {
  306. "name": "${APPLICATION_NAME}",
  307. "labels": {
  308. "application": "${APPLICATION_NAME}"
  309. }
  310. }
  311. },
  312. {
  313. "kind": "BuildConfig",
  314. "apiVersion": "v1",
  315. "metadata": {
  316. "name": "${APPLICATION_NAME}",
  317. "labels": {
  318. "application": "${APPLICATION_NAME}"
  319. }
  320. },
  321. "spec": {
  322. "source": {
  323. "type": "Git",
  324. "git": {
  325. "uri": "${SOURCE_REPOSITORY_URL}",
  326. "ref": "${SOURCE_REPOSITORY_REF}"
  327. },
  328. "contextDir": "${CONTEXT_DIR}"
  329. },
  330. "strategy": {
  331. "type": "Source",
  332. "sourceStrategy": {
  333. "env": [
  334. {
  335. "name": "MAVEN_MIRROR_URL",
  336. "value": "${MAVEN_MIRROR_URL}"
  337. },
  338. {
  339. "name": "ARTIFACT_DIR",
  340. "value": "${ARTIFACT_DIR}"
  341. }
  342. ],
  343. "forcePull": true,
  344. "from": {
  345. "kind": "ImageStreamTag",
  346. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  347. "name": "jboss-eap64-openshift:1.6"
  348. }
  349. }
  350. },
  351. "output": {
  352. "to": {
  353. "kind": "ImageStreamTag",
  354. "name": "${APPLICATION_NAME}:latest"
  355. }
  356. },
  357. "triggers": [
  358. {
  359. "type": "GitHub",
  360. "github": {
  361. "secret": "${GITHUB_WEBHOOK_SECRET}"
  362. }
  363. },
  364. {
  365. "type": "Generic",
  366. "generic": {
  367. "secret": "${GENERIC_WEBHOOK_SECRET}"
  368. }
  369. },
  370. {
  371. "type": "ImageChange",
  372. "imageChange": {}
  373. },
  374. {
  375. "type": "ConfigChange"
  376. }
  377. ]
  378. }
  379. },
  380. {
  381. "kind": "DeploymentConfig",
  382. "apiVersion": "v1",
  383. "metadata": {
  384. "name": "${APPLICATION_NAME}",
  385. "labels": {
  386. "application": "${APPLICATION_NAME}"
  387. }
  388. },
  389. "spec": {
  390. "strategy": {
  391. "type": "Recreate"
  392. },
  393. "triggers": [
  394. {
  395. "type": "ImageChange",
  396. "imageChangeParams": {
  397. "automatic": true,
  398. "containerNames": [
  399. "${APPLICATION_NAME}"
  400. ],
  401. "from": {
  402. "kind": "ImageStreamTag",
  403. "name": "${APPLICATION_NAME}:latest"
  404. }
  405. }
  406. },
  407. {
  408. "type": "ConfigChange"
  409. }
  410. ],
  411. "replicas": 1,
  412. "selector": {
  413. "deploymentConfig": "${APPLICATION_NAME}"
  414. },
  415. "template": {
  416. "metadata": {
  417. "name": "${APPLICATION_NAME}",
  418. "labels": {
  419. "deploymentConfig": "${APPLICATION_NAME}",
  420. "application": "${APPLICATION_NAME}"
  421. }
  422. },
  423. "spec": {
  424. "serviceAccountName": "${SERVICE_ACCOUNT_NAME}",
  425. "terminationGracePeriodSeconds": 60,
  426. "containers": [
  427. {
  428. "name": "${APPLICATION_NAME}",
  429. "image": "${APPLICATION_NAME}",
  430. "imagePullPolicy": "Always",
  431. "volumeMounts": [
  432. {
  433. "name": "eap-keystore-volume",
  434. "mountPath": "/etc/eap-secret-volume",
  435. "readOnly": true
  436. },
  437. {
  438. "name": "eap-jgroups-keystore-volume",
  439. "mountPath": "/etc/jgroups-encrypt-secret-volume",
  440. "readOnly": true
  441. }
  442. ],
  443. "livenessProbe": {
  444. "exec": {
  445. "command": [
  446. "/bin/bash",
  447. "-c",
  448. "/opt/eap/bin/livenessProbe.sh"
  449. ]
  450. }
  451. },
  452. "readinessProbe": {
  453. "exec": {
  454. "command": [
  455. "/bin/bash",
  456. "-c",
  457. "/opt/eap/bin/readinessProbe.sh"
  458. ]
  459. }
  460. },
  461. "ports": [
  462. {
  463. "name": "jolokia",
  464. "containerPort": 8778,
  465. "protocol": "TCP"
  466. },
  467. {
  468. "name": "http",
  469. "containerPort": 8080,
  470. "protocol": "TCP"
  471. },
  472. {
  473. "name": "https",
  474. "containerPort": 8443,
  475. "protocol": "TCP"
  476. },
  477. {
  478. "name": "ping",
  479. "containerPort": 8888,
  480. "protocol": "TCP"
  481. }
  482. ],
  483. "env": [
  484. {
  485. "name": "OPENSHIFT_KUBE_PING_LABELS",
  486. "value": "application=${APPLICATION_NAME}"
  487. },
  488. {
  489. "name": "OPENSHIFT_KUBE_PING_NAMESPACE",
  490. "valueFrom": {
  491. "fieldRef": {
  492. "fieldPath": "metadata.namespace"
  493. }
  494. }
  495. },
  496. {
  497. "name": "HTTPS_KEYSTORE_DIR",
  498. "value": "/etc/eap-secret-volume"
  499. },
  500. {
  501. "name": "HTTPS_KEYSTORE",
  502. "value": "${HTTPS_KEYSTORE}"
  503. },
  504. {
  505. "name": "HTTPS_KEYSTORE_TYPE",
  506. "value": "${HTTPS_KEYSTORE_TYPE}"
  507. },
  508. {
  509. "name": "HTTPS_NAME",
  510. "value": "${HTTPS_NAME}"
  511. },
  512. {
  513. "name": "HTTPS_PASSWORD",
  514. "value": "${HTTPS_PASSWORD}"
  515. },
  516. {
  517. "name": "HORNETQ_CLUSTER_PASSWORD",
  518. "value": "${HORNETQ_CLUSTER_PASSWORD}"
  519. },
  520. {
  521. "name": "HORNETQ_QUEUES",
  522. "value": "${HORNETQ_QUEUES}"
  523. },
  524. {
  525. "name": "HORNETQ_TOPICS",
  526. "value": "${HORNETQ_TOPICS}"
  527. },
  528. {
  529. "name": "JGROUPS_ENCRYPT_SECRET",
  530. "value": "${JGROUPS_ENCRYPT_SECRET}"
  531. },
  532. {
  533. "name": "JGROUPS_ENCRYPT_KEYSTORE_DIR",
  534. "value": "/etc/jgroups-encrypt-secret-volume"
  535. },
  536. {
  537. "name": "JGROUPS_ENCRYPT_KEYSTORE",
  538. "value": "${JGROUPS_ENCRYPT_KEYSTORE}"
  539. },
  540. {
  541. "name": "JGROUPS_ENCRYPT_NAME",
  542. "value": "${JGROUPS_ENCRYPT_NAME}"
  543. },
  544. {
  545. "name": "JGROUPS_ENCRYPT_PASSWORD",
  546. "value": "${JGROUPS_ENCRYPT_PASSWORD}"
  547. },
  548. {
  549. "name": "JGROUPS_CLUSTER_PASSWORD",
  550. "value": "${JGROUPS_CLUSTER_PASSWORD}"
  551. },
  552. {
  553. "name": "AUTO_DEPLOY_EXPLODED",
  554. "value": "${AUTO_DEPLOY_EXPLODED}"
  555. }
  556. ]
  557. }
  558. ],
  559. "volumes": [
  560. {
  561. "name": "eap-keystore-volume",
  562. "secret": {
  563. "secretName": "${HTTPS_SECRET}"
  564. }
  565. },
  566. {
  567. "name": "eap-jgroups-keystore-volume",
  568. "secret": {
  569. "secretName": "${JGROUPS_ENCRYPT_SECRET}"
  570. }
  571. }
  572. ]
  573. }
  574. }
  575. }
  576. }
  577. ]
  578. }