decisionserver63-https-s2i.json 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "annotations": {
  6. "description": "Application template for Red Hat JBoss BRMS 6.3 decision server HTTPS applications built using S2I.",
  7. "iconClass": "icon-jboss",
  8. "tags": "decisionserver,jboss,xpaas",
  9. "version": "1.4.0",
  10. "openshift.io/display-name": "Red Hat JBoss BRMS 6.3 decision server (with https)"
  11. },
  12. "name": "decisionserver63-https-s2i"
  13. },
  14. "labels": {
  15. "template": "decisionserver63-https-s2i",
  16. "xpaas": "1.4.0"
  17. },
  18. "message": "A new BRMS application with SSL support has been created in your project. The username/password for accessing the KIE Server REST or JMS interface is ${KIE_SERVER_USER}/${KIE_SERVER_PASSWORD}. Please be sure to create the \"decisionserver-service-account\" service account and the secret named \"${HTTPS_SECRET}\" containing the ${HTTPS_KEYSTORE} file used for serving secure content.",
  19. "parameters": [
  20. {
  21. "displayName": "KIE Container Deployment",
  22. "description": "The KIE Container deployment configuration in format: containerId=groupId:artifactId:version|c2=g2:a2:v2",
  23. "name": "KIE_CONTAINER_DEPLOYMENT",
  24. "value": "decisionserver-hellorules=org.openshift.quickstarts:decisionserver-hellorules:1.3.0.Final",
  25. "required": false
  26. },
  27. {
  28. "displayName": "KIE Server Protocol",
  29. "description": "The protocol to access the KIE Server REST interface.",
  30. "name": "KIE_SERVER_PROTOCOL",
  31. "value": "https",
  32. "required": false
  33. },
  34. {
  35. "displayName": "KIE Server Port",
  36. "description": "The port to access the KIE Server REST interface.",
  37. "name": "KIE_SERVER_PORT",
  38. "value": "8443",
  39. "required": false
  40. },
  41. {
  42. "displayName": "KIE Server Username",
  43. "description": "The user name to access the KIE Server REST or JMS interface.",
  44. "name": "KIE_SERVER_USER",
  45. "value": "kieserver",
  46. "required": false
  47. },
  48. {
  49. "displayName": "KIE Server Password",
  50. "description": "The password to access the KIE Server REST or JMS interface. Must be different than username; must not be root, admin, or administrator; must contain at least 8 characters, 1 alphabetic character(s), 1 digit(s), and 1 non-alphanumeric symbol(s).",
  51. "name": "KIE_SERVER_PASSWORD",
  52. "from": "[a-zA-Z]{6}[0-9]{1}!",
  53. "generate": "expression",
  54. "required": false
  55. },
  56. {
  57. "displayName": "Application Name",
  58. "description": "The name for the application.",
  59. "name": "APPLICATION_NAME",
  60. "value": "kie-app",
  61. "required": true
  62. },
  63. {
  64. "displayName": "Custom http Route Hostname",
  65. "description": "Custom hostname for http service route. Leave blank for default hostname, e.g.: <application-name>-<project>.<default-domain-suffix>",
  66. "name": "HOSTNAME_HTTP",
  67. "value": "",
  68. "required": false
  69. },
  70. {
  71. "displayName": "Custom https Route Hostname",
  72. "description": "Custom hostname for https service route. Leave blank for default hostname, e.g.: secure-<application-name>-<project>.<default-domain-suffix>",
  73. "name": "HOSTNAME_HTTPS",
  74. "value": "",
  75. "required": false
  76. },
  77. {
  78. "displayName": "Git Repository URL",
  79. "description": "Git source URI for application",
  80. "name": "SOURCE_REPOSITORY_URL",
  81. "value": "https://github.com/jboss-openshift/openshift-quickstarts.git",
  82. "required": true
  83. },
  84. {
  85. "displayName": "Git Reference",
  86. "description": "Git branch/tag reference",
  87. "name": "SOURCE_REPOSITORY_REF",
  88. "value": "1.3",
  89. "required": false
  90. },
  91. {
  92. "displayName": "Context Directory",
  93. "description": "Path within Git project to build; empty for root project directory.",
  94. "name": "CONTEXT_DIR",
  95. "value": "decisionserver/hellorules",
  96. "required": false
  97. },
  98. {
  99. "displayName": "Queues",
  100. "description": "Queue names",
  101. "name": "HORNETQ_QUEUES",
  102. "value": "",
  103. "required": false
  104. },
  105. {
  106. "displayName": "Topics",
  107. "description": "Topic names",
  108. "name": "HORNETQ_TOPICS",
  109. "value": "",
  110. "required": false
  111. },
  112. {
  113. "displayName": "Server Keystore Secret Name",
  114. "description": "The name of the secret containing the keystore file",
  115. "name": "HTTPS_SECRET",
  116. "value": "decisionserver-app-secret",
  117. "required": true
  118. },
  119. {
  120. "displayName": "Server Keystore Filename",
  121. "description": "The name of the keystore file within the secret",
  122. "name": "HTTPS_KEYSTORE",
  123. "value": "keystore.jks",
  124. "required": false
  125. },
  126. {
  127. "displayName": "Server Certificate Name",
  128. "description": "The name associated with the server certificate",
  129. "name": "HTTPS_NAME",
  130. "value": "jboss",
  131. "required": false
  132. },
  133. {
  134. "displayName": "Server Keystore Password",
  135. "description": "The password for the keystore and certificate",
  136. "name": "HTTPS_PASSWORD",
  137. "value": "mykeystorepass",
  138. "required": false
  139. },
  140. {
  141. "displayName": "HornetQ Password",
  142. "description": "HornetQ cluster admin password",
  143. "name": "HORNETQ_CLUSTER_PASSWORD",
  144. "from": "[a-zA-Z0-9]{8}",
  145. "generate": "expression",
  146. "required": true
  147. },
  148. {
  149. "displayName": "Github Webhook Secret",
  150. "description": "GitHub trigger secret",
  151. "name": "GITHUB_WEBHOOK_SECRET",
  152. "from": "[a-zA-Z0-9]{8}",
  153. "generate": "expression",
  154. "required": true
  155. },
  156. {
  157. "displayName": "Generic Webhook Secret",
  158. "description": "Generic build trigger secret",
  159. "name": "GENERIC_WEBHOOK_SECRET",
  160. "from": "[a-zA-Z0-9]{8}",
  161. "generate": "expression",
  162. "required": true
  163. },
  164. {
  165. "displayName": "ImageStream Namespace",
  166. "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.",
  167. "name": "IMAGE_STREAM_NAMESPACE",
  168. "value": "openshift",
  169. "required": true
  170. },
  171. {
  172. "displayName": "Maven mirror URL",
  173. "description": "Maven mirror to use for S2I builds",
  174. "name": "MAVEN_MIRROR_URL",
  175. "value": "",
  176. "required": false
  177. },
  178. {
  179. "description": "List of directories from which archives will be copied into the deployment folder. If unspecified, all archives in /target will be copied.",
  180. "name": "ARTIFACT_DIR",
  181. "value": "",
  182. "required": false
  183. }
  184. ],
  185. "objects": [
  186. {
  187. "kind": "Service",
  188. "apiVersion": "v1",
  189. "spec": {
  190. "ports": [
  191. {
  192. "port": 8080,
  193. "targetPort": 8080
  194. }
  195. ],
  196. "selector": {
  197. "deploymentConfig": "${APPLICATION_NAME}"
  198. }
  199. },
  200. "metadata": {
  201. "name": "${APPLICATION_NAME}",
  202. "labels": {
  203. "application": "${APPLICATION_NAME}"
  204. },
  205. "annotations": {
  206. "description": "The web server's http port."
  207. }
  208. }
  209. },
  210. {
  211. "kind": "Service",
  212. "apiVersion": "v1",
  213. "spec": {
  214. "ports": [
  215. {
  216. "port": 8443,
  217. "targetPort": 8443
  218. }
  219. ],
  220. "selector": {
  221. "deploymentConfig": "${APPLICATION_NAME}"
  222. }
  223. },
  224. "metadata": {
  225. "name": "secure-${APPLICATION_NAME}",
  226. "labels": {
  227. "application": "${APPLICATION_NAME}"
  228. },
  229. "annotations": {
  230. "description": "The web server's https port."
  231. }
  232. }
  233. },
  234. {
  235. "kind": "Route",
  236. "apiVersion": "v1",
  237. "id": "${APPLICATION_NAME}-http",
  238. "metadata": {
  239. "name": "${APPLICATION_NAME}",
  240. "labels": {
  241. "application": "${APPLICATION_NAME}"
  242. },
  243. "annotations": {
  244. "description": "Route for application's http service."
  245. }
  246. },
  247. "spec": {
  248. "host": "${HOSTNAME_HTTP}",
  249. "to": {
  250. "name": "${APPLICATION_NAME}"
  251. }
  252. }
  253. },
  254. {
  255. "kind": "Route",
  256. "apiVersion": "v1",
  257. "id": "${APPLICATION_NAME}-https",
  258. "metadata": {
  259. "name": "secure-${APPLICATION_NAME}",
  260. "labels": {
  261. "application": "${APPLICATION_NAME}"
  262. },
  263. "annotations": {
  264. "description": "Route for application's https service."
  265. }
  266. },
  267. "spec": {
  268. "host": "${HOSTNAME_HTTPS}",
  269. "to": {
  270. "name": "secure-${APPLICATION_NAME}"
  271. },
  272. "tls": {
  273. "termination": "passthrough"
  274. }
  275. }
  276. },
  277. {
  278. "kind": "ImageStream",
  279. "apiVersion": "v1",
  280. "metadata": {
  281. "name": "${APPLICATION_NAME}",
  282. "labels": {
  283. "application": "${APPLICATION_NAME}"
  284. }
  285. }
  286. },
  287. {
  288. "kind": "BuildConfig",
  289. "apiVersion": "v1",
  290. "metadata": {
  291. "name": "${APPLICATION_NAME}",
  292. "labels": {
  293. "application": "${APPLICATION_NAME}"
  294. }
  295. },
  296. "spec": {
  297. "source": {
  298. "type": "Git",
  299. "git": {
  300. "uri": "${SOURCE_REPOSITORY_URL}",
  301. "ref": "${SOURCE_REPOSITORY_REF}"
  302. },
  303. "contextDir": "${CONTEXT_DIR}"
  304. },
  305. "strategy": {
  306. "type": "Source",
  307. "sourceStrategy": {
  308. "env": [
  309. {
  310. "name": "KIE_CONTAINER_DEPLOYMENT",
  311. "value": "${KIE_CONTAINER_DEPLOYMENT}"
  312. },
  313. {
  314. "name": "MAVEN_MIRROR_URL",
  315. "value": "${MAVEN_MIRROR_URL}"
  316. },
  317. {
  318. "name": "ARTIFACT_DIR",
  319. "value": "${ARTIFACT_DIR}"
  320. }
  321. ],
  322. "forcePull": true,
  323. "from": {
  324. "kind": "ImageStreamTag",
  325. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  326. "name": "jboss-decisionserver63-openshift:1.4"
  327. }
  328. }
  329. },
  330. "output": {
  331. "to": {
  332. "kind": "ImageStreamTag",
  333. "name": "${APPLICATION_NAME}:latest"
  334. }
  335. },
  336. "triggers": [
  337. {
  338. "type": "GitHub",
  339. "github": {
  340. "secret": "${GITHUB_WEBHOOK_SECRET}"
  341. }
  342. },
  343. {
  344. "type": "Generic",
  345. "generic": {
  346. "secret": "${GENERIC_WEBHOOK_SECRET}"
  347. }
  348. },
  349. {
  350. "type": "ImageChange",
  351. "imageChange": {}
  352. },
  353. {
  354. "type": "ConfigChange"
  355. }
  356. ]
  357. }
  358. },
  359. {
  360. "kind": "DeploymentConfig",
  361. "apiVersion": "v1",
  362. "metadata": {
  363. "name": "${APPLICATION_NAME}",
  364. "labels": {
  365. "application": "${APPLICATION_NAME}"
  366. }
  367. },
  368. "spec": {
  369. "strategy": {
  370. "type": "Recreate"
  371. },
  372. "triggers": [
  373. {
  374. "type": "ImageChange",
  375. "imageChangeParams": {
  376. "automatic": true,
  377. "containerNames": [
  378. "${APPLICATION_NAME}"
  379. ],
  380. "from": {
  381. "kind": "ImageStream",
  382. "name": "${APPLICATION_NAME}"
  383. }
  384. }
  385. },
  386. {
  387. "type": "ConfigChange"
  388. }
  389. ],
  390. "replicas": 1,
  391. "selector": {
  392. "deploymentConfig": "${APPLICATION_NAME}"
  393. },
  394. "template": {
  395. "metadata": {
  396. "name": "${APPLICATION_NAME}",
  397. "labels": {
  398. "deploymentConfig": "${APPLICATION_NAME}",
  399. "application": "${APPLICATION_NAME}"
  400. }
  401. },
  402. "spec": {
  403. "serviceAccountName": "decisionserver-service-account",
  404. "terminationGracePeriodSeconds": 60,
  405. "containers": [
  406. {
  407. "name": "${APPLICATION_NAME}",
  408. "image": "${APPLICATION_NAME}",
  409. "imagePullPolicy": "Always",
  410. "volumeMounts": [
  411. {
  412. "name": "decisionserver-keystore-volume",
  413. "mountPath": "/etc/decisionserver-secret-volume",
  414. "readOnly": true
  415. }
  416. ],
  417. "livenessProbe": {
  418. "exec": {
  419. "command": [
  420. "/bin/bash",
  421. "-c",
  422. "/opt/eap/bin/livenessProbe.sh"
  423. ]
  424. }
  425. },
  426. "readinessProbe": {
  427. "exec": {
  428. "command": [
  429. "/bin/bash",
  430. "-c",
  431. "/opt/eap/bin/readinessProbe.sh"
  432. ]
  433. }
  434. },
  435. "ports": [
  436. {
  437. "name": "jolokia",
  438. "containerPort": 8778,
  439. "protocol": "TCP"
  440. },
  441. {
  442. "name": "http",
  443. "containerPort": 8080,
  444. "protocol": "TCP"
  445. },
  446. {
  447. "name": "https",
  448. "containerPort": 8443,
  449. "protocol": "TCP"
  450. }
  451. ],
  452. "env": [
  453. {
  454. "name": "KIE_CONTAINER_DEPLOYMENT",
  455. "value": "${KIE_CONTAINER_DEPLOYMENT}"
  456. },
  457. {
  458. "name": "KIE_SERVER_PROTOCOL",
  459. "value": "${KIE_SERVER_PROTOCOL}"
  460. },
  461. {
  462. "name": "KIE_SERVER_PORT",
  463. "value": "${KIE_SERVER_PORT}"
  464. },
  465. {
  466. "name": "KIE_SERVER_USER",
  467. "value": "${KIE_SERVER_USER}"
  468. },
  469. {
  470. "name": "KIE_SERVER_PASSWORD",
  471. "value": "${KIE_SERVER_PASSWORD}"
  472. },
  473. {
  474. "name": "HTTPS_KEYSTORE_DIR",
  475. "value": "/etc/decisionserver-secret-volume"
  476. },
  477. {
  478. "name": "HTTPS_KEYSTORE",
  479. "value": "${HTTPS_KEYSTORE}"
  480. },
  481. {
  482. "name": "HTTPS_NAME",
  483. "value": "${HTTPS_NAME}"
  484. },
  485. {
  486. "name": "HTTPS_PASSWORD",
  487. "value": "${HTTPS_PASSWORD}"
  488. },
  489. {
  490. "name": "HORNETQ_CLUSTER_PASSWORD",
  491. "value": "${HORNETQ_CLUSTER_PASSWORD}"
  492. },
  493. {
  494. "name": "HORNETQ_QUEUES",
  495. "value": "${HORNETQ_QUEUES}"
  496. },
  497. {
  498. "name": "HORNETQ_TOPICS",
  499. "value": "${HORNETQ_TOPICS}"
  500. }
  501. ]
  502. }
  503. ],
  504. "volumes": [
  505. {
  506. "name": "decisionserver-keystore-volume",
  507. "secret": {
  508. "secretName": "${HTTPS_SECRET}"
  509. }
  510. }
  511. ]
  512. }
  513. }
  514. }
  515. }
  516. ]
  517. }