rhpam70-authoring.yaml 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738
  1. ---
  2. kind: Template
  3. apiVersion: v1
  4. metadata:
  5. annotations:
  6. description: Application template for a non-HA persistent authoring environment, for Red Hat Process Automation Manager 7.0
  7. iconClass: icon-jboss
  8. tags: rhpam,jboss,xpaas
  9. version: 1.4.0
  10. openshift.io/display-name: Red Hat Process Automation Manager 7.0 authoring environment (non-HA, persistent, with https)
  11. name: rhpam70-authoring
  12. labels:
  13. template: rhpam70-authoring
  14. xpaas: 1.4.0
  15. message: A new persistent Process Automation Manager application have been created in your project.
  16. The username/password for accessing the KIE Server / Business Central interface is ${KIE_ADMIN_USER}/${KIE_ADMIN_PWD}.
  17. Please be sure to create the secrets named "${BUSINESS_CENTRAL_HTTPS_SECRET}" and "${KIE_SERVER_HTTPS_SECRET}" containing the
  18. ${BUSINESS_CENTRAL_HTTPS_KEYSTORE} and ${KIE_SERVER_HTTPS_KEYSTORE} files used for serving secure content.
  19. parameters:
  20. - displayName: Application Name
  21. description: The name for the application.
  22. name: APPLICATION_NAME
  23. value: myapp
  24. required: true
  25. - displayName: EAP Admin User
  26. description: EAP administrator username
  27. name: ADMIN_USERNAME
  28. value: eapadmin
  29. required: false
  30. - displayName: EAP Admin Password
  31. description: EAP administrator password
  32. name: ADMIN_PASSWORD
  33. from: "[a-zA-Z]{6}[0-9]{1}!"
  34. generate: expression
  35. required: false
  36. - displayName: KIE Admin User
  37. description: KIE administrator username
  38. name: KIE_ADMIN_USER
  39. value: adminUser
  40. required: false
  41. - displayName: KIE Admin Password
  42. description: KIE administrator password
  43. name: KIE_ADMIN_PWD
  44. from: "[a-zA-Z]{6}[0-9]{1}!"
  45. generate: expression
  46. required: false
  47. - displayName: KIE Server Controller User
  48. description: KIE server controller username (Sets the org.kie.server.controller.user system property)
  49. name: KIE_SERVER_CONTROLLER_USER
  50. value: controllerUser
  51. required: false
  52. - displayName: KIE Server Controller Password
  53. description: KIE server controller password (Sets the org.kie.server.controller.pwd system property)
  54. name: KIE_SERVER_CONTROLLER_PWD
  55. from: "[a-zA-Z]{6}[0-9]{1}!"
  56. generate: expression
  57. required: false
  58. - displayName: KIE Server User
  59. description: KIE execution server username (Sets the org.kie.server.user system property)
  60. name: KIE_SERVER_USER
  61. value: executionUser
  62. required: false
  63. - displayName: KIE Server Password
  64. description: KIE execution server password (Sets the org.kie.server.pwd system property)
  65. name: KIE_SERVER_PWD
  66. from: "[a-zA-Z]{6}[0-9]{1}!"
  67. generate: expression
  68. required: false
  69. - displayName: KIE Server ID
  70. description: Business server identifier. Determines the template ID in Business Central or controller. If this parameter is left blank, it is set using the $HOSTNAME environment variable or a random value. (Sets the org.kie.server.id system property).
  71. name: KIE_SERVER_ID
  72. required: false
  73. - displayName: KIE Server Bypass Auth User
  74. description: KIE execution server bypass auth user (Sets the org.kie.server.bypass.auth.user system property)
  75. name: KIE_SERVER_BYPASS_AUTH_USER
  76. value: 'false'
  77. required: false
  78. - displayName: KIE Server Persistence DS
  79. description: KIE execution server persistence datasource (Sets the org.kie.server.persistence.ds system property)
  80. name: KIE_SERVER_PERSISTENCE_DS
  81. value: java:/jboss/datasources/rhpam
  82. required: false
  83. ## H2 database parameters BEGIN
  84. - displayName: KIE Server H2 Database User
  85. description: KIE execution server H2 database username
  86. name: KIE_SERVER_H2_USER
  87. value: sa
  88. required: false
  89. - displayName: KIE Server H2 Database Password
  90. description: KIE execution server H2 database password
  91. name: KIE_SERVER_H2_PWD
  92. from: "[a-zA-Z]{6}[0-9]{1}!"
  93. generate: expression
  94. required: false
  95. ## H2 database parameters END
  96. - displayName: KIE MBeans
  97. description: KIE execution server mbeans enabled/disabled (Sets the kie.mbeans and kie.scanner.mbeans system properties)
  98. name: KIE_MBEANS
  99. value: enabled
  100. required: false
  101. - displayName: Drools Server Filter Classes
  102. description: KIE execution server class filtering (Sets the org.drools.server.filter.classes system property)
  103. name: DROOLS_SERVER_FILTER_CLASSES
  104. value: 'true'
  105. required: false
  106. - displayName: Business Central Custom http Route Hostname
  107. description: 'Custom hostname for http service route. Leave blank for default hostname,
  108. e.g.: <application-name>-rhpamcentr-<project>.<default-domain-suffix>'
  109. name: BUSINESS_CENTRAL_HOSTNAME_HTTP
  110. value: ''
  111. required: false
  112. - displayName: Business Central Custom https Route Hostname
  113. description: 'Custom hostname for https service route. Leave blank for default
  114. hostname, e.g.: secure-<application-name>-rhpamcentr-<project>.<default-domain-suffix>'
  115. name: BUSINESS_CENTRAL_HOSTNAME_HTTPS
  116. value: ''
  117. required: false
  118. - displayName: Execution Server Custom http Route Hostname
  119. description: 'Custom hostname for http service route. Leave blank for default hostname,
  120. e.g.: <application-name>-kieserver-<project>.<default-domain-suffix>'
  121. name: EXECUTION_SERVER_HOSTNAME_HTTP
  122. value: ''
  123. required: false
  124. - displayName: Execution Server Custom https Route Hostname
  125. description: 'Custom hostname for https service route. Leave blank for default
  126. hostname, e.g.: secure-<application-name>-kieserver-<project>.<default-domain-suffix>'
  127. name: EXECUTION_SERVER_HOSTNAME_HTTPS
  128. value: ''
  129. required: false
  130. - displayName: Business Central Server Keystore Secret Name
  131. description: The name of the secret containing the keystore file
  132. name: BUSINESS_CENTRAL_HTTPS_SECRET
  133. example: businesscentral-app-secret
  134. required: true
  135. - displayName: Business Central Server Keystore Filename
  136. description: The name of the keystore file within the secret
  137. name: BUSINESS_CENTRAL_HTTPS_KEYSTORE
  138. value: keystore.jks
  139. required: false
  140. - displayName: Business Central Server Certificate Name
  141. description: The name associated with the server certificate
  142. name: BUSINESS_CENTRAL_HTTPS_NAME
  143. value: jboss
  144. required: false
  145. - displayName: Business Central Server Keystore Password
  146. description: The password for the keystore and certificate
  147. name: BUSINESS_CENTRAL_HTTPS_PASSWORD
  148. value: mykeystorepass
  149. required: false
  150. - displayName: KIE Server Keystore Secret Name
  151. description: The name of the secret containing the keystore file
  152. name: KIE_SERVER_HTTPS_SECRET
  153. example: kieserver-app-secret
  154. required: true
  155. - displayName: KIE Server Keystore Filename
  156. description: The name of the keystore file within the secret
  157. name: KIE_SERVER_HTTPS_KEYSTORE
  158. value: keystore.jks
  159. required: false
  160. - displayName: KIE Server Certificate Name
  161. description: The name associated with the server certificate
  162. name: KIE_SERVER_HTTPS_NAME
  163. value: jboss
  164. required: false
  165. - displayName: KIE Server Keystore Password
  166. description: The password for the keystore and certificate
  167. name: KIE_SERVER_HTTPS_PASSWORD
  168. value: mykeystorepass
  169. required: false
  170. - displayName: Database Volume Capacity
  171. description: Size of persistent storage for database volume.
  172. name: DB_VOLUME_CAPACITY
  173. value: 1Gi
  174. required: true
  175. - displayName: ImageStream Namespace
  176. description: Namespace in which the ImageStreams for Red Hat Middleware images are
  177. installed. These ImageStreams are normally installed in the openshift namespace.
  178. You should only need to modify this if you've installed the ImageStreams in a
  179. different namespace/project.
  180. name: IMAGE_STREAM_NAMESPACE
  181. value: openshift
  182. required: true
  183. - displayName: ImageStream Tag
  184. description: A named pointer to an image in an image stream. Default is "1.0".
  185. name: IMAGE_STREAM_TAG
  186. value: "1.0"
  187. required: false
  188. - displayName: Maven repository URL
  189. description: Fully qualified URL to a Maven repository or service.
  190. name: MAVEN_REPO_URL
  191. example: http://nexus.nexus-project.svc.cluster.local:8081/nexus/content/groups/public/
  192. required: false
  193. - displayName: Maven repository username
  194. description: Username to access the Maven repository.
  195. name: MAVEN_REPO_USERNAME
  196. required: false
  197. - displayName: Maven repository password
  198. description: Password to access the Maven repository.
  199. name: MAVEN_REPO_PASSWORD
  200. required: false
  201. - displayName: Username for the Maven service hosted by Business Central
  202. description: Username to access the Maven service hosted by Business Central inside EAP.
  203. name: BUSINESS_CENTRAL_MAVEN_USERNAME
  204. required: true
  205. value: mavenUser
  206. - displayName: Password for the Maven service hosted by Business Central
  207. description: Password to access the Maven service hosted by Business Central inside EAP.
  208. name: BUSINESS_CENTRAL_MAVEN_PASSWORD
  209. from: "[a-zA-Z]{6}[0-9]{1}!"
  210. generate: expression
  211. required: true
  212. - displayName: Business Central Volume Capacity
  213. description: Size of the persistent storage for Business Central's runtime data.
  214. name: BUSINESS_CENTRAL_VOLUME_CAPACITY
  215. value: 1Gi
  216. required: true
  217. - displayName: Business Central Container Memory Limit
  218. description: Business Central Container memory limit
  219. name: BUSINESS_CENTRAL_MEMORY_LIMIT
  220. value: 2Gi
  221. required: false
  222. - displayName: Execution Server Container Memory Limit
  223. description: Execution Server Container memory limit
  224. name: EXCECUTION_SERVER_MEMORY_LIMIT
  225. value: 1Gi
  226. required: false
  227. - displayName: RH-SSO URL
  228. description: RH-SSO URL
  229. name: SSO_URL
  230. example: https://rh-sso.example.com/auth
  231. required: false
  232. - displayName: RH-SSO Realm name
  233. description: RH-SSO Realm name
  234. name: SSO_REALM
  235. required: false
  236. - displayName: Business Central RH-SSO Client name
  237. description: Business Central RH-SSO Client name
  238. name: BUSINESS_CENTRAL_SSO_CLIENT
  239. required: false
  240. - displayName: Business Central RH-SSO Client Secret
  241. description: Business Central RH-SSO Client Secret
  242. name: BUSINESS_CENTRAL_SSO_SECRET
  243. example: "252793ed-7118-4ca8-8dab-5622fa97d892"
  244. required: false
  245. - displayName: KIE Server RH-SSO Client name
  246. description: KIE Server RH-SSO Client name
  247. name: KIE_SERVER_SSO_CLIENT
  248. required: false
  249. - displayName: KIE Server RH-SSO Client Secret
  250. description: KIE Server RH-SSO Client Secret
  251. name: KIE_SERVER_SSO_SECRET
  252. example: "252793ed-7118-4ca8-8dab-5622fa97d892"
  253. required: false
  254. - displayName: RH-SSO Realm Admin Username
  255. description: RH-SSO Realm Admin Username used to create the Client if it doesn't exist
  256. name: SSO_USERNAME
  257. required: false
  258. - displayName: RH-SSO Realm Admin Password
  259. description: RH-SSO Realm Admin Password used to create the Client
  260. name: SSO_PASSWORD
  261. required: false
  262. - displayName: RH-SSO Disable SSL Certificate Validation
  263. description: RH-SSO Disable SSL Certificate Validation
  264. name: SSO_DISABLE_SSL_CERTIFICATE_VALIDATION
  265. value: "false"
  266. required: false
  267. objects:
  268. - kind: Service
  269. apiVersion: v1
  270. spec:
  271. ports:
  272. - name: http
  273. port: 8080
  274. targetPort: 8080
  275. - name: https
  276. port: 8443
  277. targetPort: 8443
  278. - name: git-ssh
  279. port: 8001
  280. targetPort: 8001
  281. selector:
  282. deploymentConfig: "${APPLICATION_NAME}-rhpamcentr"
  283. metadata:
  284. name: "${APPLICATION_NAME}-rhpamcentr"
  285. labels:
  286. application: "${APPLICATION_NAME}"
  287. service: "${APPLICATION_NAME}-rhpamcentr"
  288. annotations:
  289. description: All the Business Central web server's ports.
  290. - kind: Service
  291. apiVersion: v1
  292. spec:
  293. ports:
  294. - name: http
  295. port: 8080
  296. targetPort: 8080
  297. - name: https
  298. port: 8443
  299. targetPort: 8443
  300. selector:
  301. deploymentConfig: "${APPLICATION_NAME}-kieserver"
  302. metadata:
  303. name: "${APPLICATION_NAME}-kieserver"
  304. labels:
  305. application: "${APPLICATION_NAME}"
  306. service: "${APPLICATION_NAME}-kieserver"
  307. annotations:
  308. description: All the KIE server web server's ports.
  309. ## Place to add database service
  310. - kind: Route
  311. apiVersion: v1
  312. id: "${APPLICATION_NAME}-rhpamcentr-http"
  313. metadata:
  314. name: "${APPLICATION_NAME}-rhpamcentr"
  315. labels:
  316. application: "${APPLICATION_NAME}"
  317. service: "${APPLICATION_NAME}-rhpamcentr"
  318. annotations:
  319. description: Route for Business Central's http service.
  320. haproxy.router.openshift.io/timeout: 60s
  321. spec:
  322. host: "${BUSINESS_CENTRAL_HOSTNAME_HTTP}"
  323. to:
  324. name: "${APPLICATION_NAME}-rhpamcentr"
  325. port:
  326. targetPort: http
  327. - kind: Route
  328. apiVersion: v1
  329. id: "${APPLICATION_NAME}-rhpamcentr-https"
  330. metadata:
  331. name: secure-${APPLICATION_NAME}-rhpamcentr
  332. labels:
  333. application: "${APPLICATION_NAME}"
  334. service: "${APPLICATION_NAME}-rhpamcentr"
  335. annotations:
  336. description: Route for Business Central's https service.
  337. haproxy.router.openshift.io/timeout: 60s
  338. spec:
  339. host: "${BUSINESS_CENTRAL_HOSTNAME_HTTPS}"
  340. to:
  341. name: ${APPLICATION_NAME}-rhpamcentr
  342. port:
  343. targetPort: https
  344. tls:
  345. termination: passthrough
  346. - kind: Route
  347. apiVersion: v1
  348. id: "${APPLICATION_NAME}-kieserver-http"
  349. metadata:
  350. name: "${APPLICATION_NAME}-kieserver"
  351. labels:
  352. application: "${APPLICATION_NAME}"
  353. service: "${APPLICATION_NAME}-kieserver"
  354. annotations:
  355. description: Route for KIE server's http service.
  356. spec:
  357. host: "${EXECUTION_SERVER_HOSTNAME_HTTP}"
  358. to:
  359. name: "${APPLICATION_NAME}-kieserver"
  360. port:
  361. targetPort: http
  362. - kind: Route
  363. apiVersion: v1
  364. id: "${APPLICATION_NAME}-kieserver-https"
  365. metadata:
  366. name: secure-${APPLICATION_NAME}-kieserver
  367. labels:
  368. application: "${APPLICATION_NAME}"
  369. service: "${APPLICATION_NAME}-kieserver"
  370. annotations:
  371. description: Route for KIE server's https service.
  372. spec:
  373. host: "${EXECUTION_SERVER_HOSTNAME_HTTPS}"
  374. to:
  375. name: ${APPLICATION_NAME}-kieserver
  376. port:
  377. targetPort: https
  378. tls:
  379. termination: passthrough
  380. - kind: DeploymentConfig
  381. apiVersion: v1
  382. metadata:
  383. name: "${APPLICATION_NAME}-rhpamcentr"
  384. labels:
  385. application: "${APPLICATION_NAME}"
  386. service: "${APPLICATION_NAME}-rhpamcentr"
  387. spec:
  388. strategy:
  389. type: Recreate
  390. triggers:
  391. - type: ImageChange
  392. imageChangeParams:
  393. automatic: true
  394. containerNames:
  395. - "${APPLICATION_NAME}-rhpamcentr"
  396. from:
  397. kind: ImageStreamTag
  398. namespace: "${IMAGE_STREAM_NAMESPACE}"
  399. name: "rhpam70-businesscentral-openshift:${IMAGE_STREAM_TAG}"
  400. - type: ConfigChange
  401. replicas: 1
  402. selector:
  403. deploymentConfig: "${APPLICATION_NAME}-rhpamcentr"
  404. template:
  405. metadata:
  406. name: "${APPLICATION_NAME}-rhpamcentr"
  407. labels:
  408. deploymentConfig: "${APPLICATION_NAME}-rhpamcentr"
  409. application: "${APPLICATION_NAME}"
  410. service: "${APPLICATION_NAME}-rhpamcentr"
  411. spec:
  412. terminationGracePeriodSeconds: 60
  413. containers:
  414. - name: "${APPLICATION_NAME}-rhpamcentr"
  415. image: rhpam70-businesscentral-openshift
  416. imagePullPolicy: Always
  417. resources:
  418. limits:
  419. memory: "${BUSINESS_CENTRAL_MEMORY_LIMIT}"
  420. volumeMounts:
  421. - name: businesscentral-keystore-volume
  422. mountPath: "/etc/businesscentral-secret-volume"
  423. readOnly: true
  424. - name: "${APPLICATION_NAME}-rhpamcentr-pvol"
  425. mountPath: "/opt/eap/standalone/data/bpmsuite"
  426. livenessProbe:
  427. exec:
  428. command:
  429. - "/bin/bash"
  430. - "-c"
  431. - "curl --fail --silent -u '${KIE_ADMIN_USER}:${KIE_ADMIN_PWD}' http://localhost:8080/kie-wb.jsp"
  432. initialDelaySeconds: 180
  433. timeoutSeconds: 2
  434. periodSeconds: 15
  435. readinessProbe:
  436. exec:
  437. command:
  438. - "/bin/bash"
  439. - "-c"
  440. - "curl --fail --silent -u '${KIE_ADMIN_USER}:${KIE_ADMIN_PWD}' http://localhost:8080/kie-wb.jsp"
  441. initialDelaySeconds: 60
  442. timeoutSeconds: 2
  443. periodSeconds: 30
  444. failureThreshold: 6
  445. ports:
  446. - name: jolokia
  447. containerPort: 8778
  448. protocol: TCP
  449. - name: http
  450. containerPort: 8080
  451. protocol: TCP
  452. - name: https
  453. containerPort: 8443
  454. protocol: TCP
  455. - name: git-ssh
  456. containerPort: 8001
  457. protocol: TCP
  458. env:
  459. - name: KIE_ADMIN_USER
  460. value: "${KIE_ADMIN_USER}"
  461. - name: KIE_ADMIN_PWD
  462. value: "${KIE_ADMIN_PWD}"
  463. - name: KIE_MBEANS
  464. value: "${KIE_MBEANS}"
  465. - name: KIE_SERVER_CONTROLLER_USER
  466. value: "${KIE_SERVER_CONTROLLER_USER}"
  467. - name: KIE_SERVER_CONTROLLER_PWD
  468. value: "${KIE_SERVER_CONTROLLER_PWD}"
  469. - name: KIE_SERVER_USER
  470. value: "${KIE_SERVER_USER}"
  471. - name: KIE_SERVER_PWD
  472. value: "${KIE_SERVER_PWD}"
  473. - name: MAVEN_REPO_URL
  474. value: "${MAVEN_REPO_URL}"
  475. - name: MAVEN_REPO_USERNAME
  476. value: "${MAVEN_REPO_USERNAME}"
  477. - name: MAVEN_REPO_PASSWORD
  478. value: "${MAVEN_REPO_PASSWORD}"
  479. - name: KIE_MAVEN_USER
  480. value: "${BUSINESS_CENTRAL_MAVEN_USERNAME}"
  481. - name: KIE_MAVEN_PWD
  482. value: "${BUSINESS_CENTRAL_MAVEN_PASSWORD}"
  483. - name: HTTPS_KEYSTORE_DIR
  484. value: "/etc/businesscentral-secret-volume"
  485. - name: HTTPS_KEYSTORE
  486. value: "${BUSINESS_CENTRAL_HTTPS_KEYSTORE}"
  487. - name: HTTPS_NAME
  488. value: "${BUSINESS_CENTRAL_HTTPS_NAME}"
  489. - name: HTTPS_PASSWORD
  490. value: "${BUSINESS_CENTRAL_HTTPS_PASSWORD}"
  491. - name: ADMIN_USERNAME
  492. value: "${ADMIN_USERNAME}"
  493. - name: ADMIN_PASSWORD
  494. value: "${ADMIN_PASSWORD}"
  495. - name: PROBE_IMPL
  496. value: probe.eap.jolokia.EapProbe
  497. - name: PROBE_DISABLE_BOOT_ERRORS_CHECK
  498. value: 'true'
  499. - name: SSO_URL
  500. value: "${SSO_URL}"
  501. - name: SSO_OPENIDCONNECT_DEPLOYMENTS
  502. value: "ROOT.war"
  503. - name: SSO_REALM
  504. value: "${SSO_REALM}"
  505. - name: SSO_SECRET
  506. value: "${BUSINESS_CENTRAL_SSO_SECRET}"
  507. - name: SSO_CLIENT
  508. value: "${BUSINESS_CENTRAL_SSO_CLIENT}"
  509. - name: SSO_USERNAME
  510. value: "${SSO_USERNAME}"
  511. - name: SSO_PASSWORD
  512. value: "${SSO_PASSWORD}"
  513. - name: SSO_DISABLE_SSL_CERTIFICATE_VALIDATION
  514. value: "${SSO_DISABLE_SSL_CERTIFICATE_VALIDATION}"
  515. - name: HOSTNAME_HTTP
  516. value: "${BUSINESS_CENTRAL_HOSTNAME_HTTP}"
  517. - name: HOSTNAME_HTTPS
  518. value: "${BUSINESS_CENTRAL_HOSTNAME_HTTPS}"
  519. volumes:
  520. - name: businesscentral-keystore-volume
  521. secret:
  522. secretName: "${BUSINESS_CENTRAL_HTTPS_SECRET}"
  523. - name: "${APPLICATION_NAME}-rhpamcentr-pvol"
  524. persistentVolumeClaim:
  525. claimName: "${APPLICATION_NAME}-rhpamcentr-claim"
  526. - kind: DeploymentConfig
  527. apiVersion: v1
  528. metadata:
  529. name: "${APPLICATION_NAME}-kieserver"
  530. labels:
  531. application: "${APPLICATION_NAME}"
  532. service: "${APPLICATION_NAME}-kieserver"
  533. spec:
  534. strategy:
  535. type: Recreate
  536. triggers:
  537. - type: ImageChange
  538. imageChangeParams:
  539. automatic: true
  540. containerNames:
  541. - "${APPLICATION_NAME}-kieserver"
  542. from:
  543. kind: ImageStreamTag
  544. namespace: "${IMAGE_STREAM_NAMESPACE}"
  545. name: "rhpam70-kieserver-openshift:${IMAGE_STREAM_TAG}"
  546. - type: ConfigChange
  547. replicas: 1
  548. selector:
  549. deploymentConfig: "${APPLICATION_NAME}-kieserver"
  550. template:
  551. metadata:
  552. name: "${APPLICATION_NAME}-kieserver"
  553. labels:
  554. deploymentConfig: "${APPLICATION_NAME}-kieserver"
  555. application: "${APPLICATION_NAME}"
  556. service: "${APPLICATION_NAME}-kieserver"
  557. spec:
  558. terminationGracePeriodSeconds: 60
  559. containers:
  560. - name: "${APPLICATION_NAME}-kieserver"
  561. image: rhpam70-kieserver-openshift
  562. imagePullPolicy: Always
  563. resources:
  564. limits:
  565. memory: "${EXCECUTION_SERVER_MEMORY_LIMIT}"
  566. volumeMounts:
  567. - name: kieserver-keystore-volume
  568. mountPath: "/etc/kieserver-secret-volume"
  569. readOnly: true
  570. ## H2 volume mount BEGIN
  571. - name: "${APPLICATION_NAME}-h2-pvol"
  572. mountPath: "/opt/eap/standalone/data"
  573. ## H2 volume mount END
  574. livenessProbe:
  575. exec:
  576. command:
  577. - "/bin/bash"
  578. - "-c"
  579. - "curl --fail --silent -u '${KIE_ADMIN_USER}:${KIE_ADMIN_PWD}' http://localhost:8080/services/rest/server/healthcheck"
  580. initialDelaySeconds: 180
  581. timeoutSeconds: 2
  582. periodSeconds: 15
  583. failureThreshold: 3
  584. readinessProbe:
  585. exec:
  586. command:
  587. - "/bin/bash"
  588. - "-c"
  589. - "curl --fail --silent -u '${KIE_ADMIN_USER}:${KIE_ADMIN_PWD}' http://localhost:8080/services/rest/server/readycheck"
  590. initialDelaySeconds: 60
  591. timeoutSeconds: 2
  592. periodSeconds: 30
  593. failureThreshold: 6
  594. ports:
  595. - name: jolokia
  596. containerPort: 8778
  597. protocol: TCP
  598. - name: http
  599. containerPort: 8080
  600. protocol: TCP
  601. - name: https
  602. containerPort: 8443
  603. protocol: TCP
  604. env:
  605. - name: DATASOURCES
  606. value: "RHPAM"
  607. - name: RHPAM_DATABASE
  608. value: "rhpam7"
  609. - name: RHPAM_JNDI
  610. value: "${KIE_SERVER_PERSISTENCE_DS}"
  611. - name: RHPAM_JTA
  612. value: "true"
  613. ## H2 driver settings BEGIN
  614. - name: RHPAM_DRIVER
  615. value: "h2"
  616. - name: RHPAM_USERNAME
  617. value: "${KIE_SERVER_H2_USER}"
  618. - name: RHPAM_PASSWORD
  619. value: "${KIE_SERVER_H2_PWD}"
  620. - name: RHPAM_XA_CONNECTION_PROPERTY_URL
  621. value: "jdbc:h2:/opt/eap/standalone/data/rhpam"
  622. - name: RHPAM_SERVICE_HOST
  623. value: "dummy_ignored"
  624. - name: RHPAM_SERVICE_PORT
  625. value: "12345"
  626. - name: KIE_SERVER_PERSISTENCE_DIALECT
  627. value: "org.hibernate.dialect.H2Dialect"
  628. ## H2 driver settings END
  629. - name: DROOLS_SERVER_FILTER_CLASSES
  630. value: "${DROOLS_SERVER_FILTER_CLASSES}"
  631. - name: KIE_ADMIN_USER
  632. value: "${KIE_ADMIN_USER}"
  633. - name: KIE_ADMIN_PWD
  634. value: "${KIE_ADMIN_PWD}"
  635. - name: KIE_MBEANS
  636. value: "${KIE_MBEANS}"
  637. - name: KIE_SERVER_BYPASS_AUTH_USER
  638. value: "${KIE_SERVER_BYPASS_AUTH_USER}"
  639. - name: KIE_SERVER_CONTROLLER_USER
  640. value: "${KIE_SERVER_CONTROLLER_USER}"
  641. - name: KIE_SERVER_CONTROLLER_PWD
  642. value: "${KIE_SERVER_CONTROLLER_PWD}"
  643. - name: KIE_SERVER_CONTROLLER_SERVICE
  644. value: "${APPLICATION_NAME}-rhpamcentr"
  645. - name: KIE_SERVER_ID
  646. value: "${KIE_SERVER_ID}"
  647. - name: KIE_SERVER_HOST
  648. valueFrom:
  649. fieldRef:
  650. fieldPath: status.podIP
  651. - name: KIE_SERVER_PERSISTENCE_DS
  652. value: "${KIE_SERVER_PERSISTENCE_DS}"
  653. - name: KIE_SERVER_USER
  654. value: "${KIE_SERVER_USER}"
  655. - name: KIE_SERVER_PWD
  656. value: "${KIE_SERVER_PWD}"
  657. - name: MAVEN_REPOS
  658. value: "RHPAMCENTR,EXTERNAL"
  659. - name: RHPAMCENTR_MAVEN_REPO_SERVICE
  660. value: "${APPLICATION_NAME}-rhpamcentr"
  661. - name: RHPAMCENTR_MAVEN_REPO_PATH
  662. value: "/maven2/"
  663. - name: RHPAMCENTR_MAVEN_REPO_USERNAME
  664. value: "${BUSINESS_CENTRAL_MAVEN_USERNAME}"
  665. - name: RHPAMCENTR_MAVEN_REPO_PASSWORD
  666. value: "${BUSINESS_CENTRAL_MAVEN_PASSWORD}"
  667. - name: EXTERNAL_MAVEN_REPO_URL
  668. value: "${MAVEN_REPO_URL}"
  669. - name: EXTERNAL_MAVEN_REPO_USERNAME
  670. value: "${MAVEN_REPO_USERNAME}"
  671. - name: EXTERNAL_MAVEN_REPO_PASSWORD
  672. value: "${MAVEN_REPO_PASSWORD}"
  673. - name: HTTPS_KEYSTORE_DIR
  674. value: "/etc/kieserver-secret-volume"
  675. - name: HTTPS_KEYSTORE
  676. value: "${KIE_SERVER_HTTPS_KEYSTORE}"
  677. - name: HTTPS_NAME
  678. value: "${KIE_SERVER_HTTPS_NAME}"
  679. - name: HTTPS_PASSWORD
  680. value: "${KIE_SERVER_HTTPS_PASSWORD}"
  681. - name: SSO_URL
  682. value: "${SSO_URL}"
  683. - name: SSO_OPENIDCONNECT_DEPLOYMENTS
  684. value: "ROOT.war"
  685. - name: SSO_REALM
  686. value: "${SSO_REALM}"
  687. - name: SSO_SECRET
  688. value: "${KIE_SERVER_SSO_SECRET}"
  689. - name: SSO_CLIENT
  690. value: "${KIE_SERVER_SSO_CLIENT}"
  691. - name: SSO_USERNAME
  692. value: "${SSO_USERNAME}"
  693. - name: SSO_PASSWORD
  694. value: "${SSO_PASSWORD}"
  695. - name: SSO_DISABLE_SSL_CERTIFICATE_VALIDATION
  696. value: "${SSO_DISABLE_SSL_CERTIFICATE_VALIDATION}"
  697. - name: HOSTNAME_HTTP
  698. value: "${EXECUTION_SERVER_HOSTNAME_HTTP}"
  699. - name: HOSTNAME_HTTPS
  700. value: "${EXECUTION_SERVER_HOSTNAME_HTTPS}"
  701. volumes:
  702. - name: kieserver-keystore-volume
  703. secret:
  704. secretName: "${KIE_SERVER_HTTPS_SECRET}"
  705. ## H2 volume settings BEGIN
  706. - name: "${APPLICATION_NAME}-h2-pvol"
  707. persistentVolumeClaim:
  708. claimName: "${APPLICATION_NAME}-h2-claim"
  709. ## H2 volume settings END
  710. ## Place to add database deployment config
  711. - apiVersion: v1
  712. kind: PersistentVolumeClaim
  713. metadata:
  714. name: "${APPLICATION_NAME}-rhpamcentr-claim"
  715. labels:
  716. application: "${APPLICATION_NAME}"
  717. service: "${APPLICATION_NAME}-rhpamcentr"
  718. spec:
  719. accessModes:
  720. - ReadWriteOnce
  721. resources:
  722. requests:
  723. storage: "${BUSINESS_CENTRAL_VOLUME_CAPACITY}"
  724. ## H2 persistent volume claim BEGIN
  725. - apiVersion: v1
  726. kind: PersistentVolumeClaim
  727. metadata:
  728. name: "${APPLICATION_NAME}-h2-claim"
  729. labels:
  730. application: "${APPLICATION_NAME}"
  731. service: "${APPLICATION_NAME}-kieserver"
  732. spec:
  733. accessModes:
  734. - ReadWriteOnce
  735. resources:
  736. requests:
  737. storage: "${DB_VOLUME_CAPACITY}"
  738. ## H2 persistent volume claim END