datavirt63-basic-s2i.json 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "annotations": {
  6. "iconClass": "icon-datavirt",
  7. "description": "Application template for JBoss Data Virtualization 6.3 services built using S2I.",
  8. "tags": "jdv,datavirt,database,jboss",
  9. "version": "1.4.7",
  10. "openshift.io/display-name": "JBoss Data Virtualization 6.3 (no SSL)",
  11. "openshift.io/provider-display-name": "Red Hat, Inc."
  12. },
  13. "name": "datavirt63-basic-s2i"
  14. },
  15. "labels": {
  16. "template": "datavirt63-basic-s2i",
  17. "xpaas": "1.4.7"
  18. },
  19. "message": "A new data service has been created in your project. The username/password for accessing the service is ${TEIID_USERNAME}/${TEIID_PASSWORD}. Please be sure to create the \"${SERVICE_ACCOUNT_NAME}\" service account and the secret named ${CONFIGURATION_NAME} containing the datasource configuration details required by the deployed VDB(s).",
  20. "parameters": [
  21. {
  22. "description": "The name for the application.",
  23. "displayName": "Application Name",
  24. "name": "APPLICATION_NAME",
  25. "value": "datavirt-app",
  26. "required": true
  27. },
  28. {
  29. "description": "The name of the secret containing configuration properties for the data sources.",
  30. "displayName": "Configuration Secret Name",
  31. "name": "CONFIGURATION_NAME",
  32. "value": "datavirt-app-config",
  33. "required": true
  34. },
  35. {
  36. "description": "Specify a custom hostname for the http route. Leave blank to use default hostname, e.g.: <service-name>-<project>.<default-domain-suffix>",
  37. "displayName": "Custom http Route Hostname",
  38. "name": "HOSTNAME_HTTP",
  39. "value": "",
  40. "required": false
  41. },
  42. {
  43. "description": "The URL of the repository with your application source code.",
  44. "displayName": "Git Repository URL",
  45. "name": "SOURCE_REPOSITORY_URL",
  46. "value": "https://github.com/jboss-openshift/openshift-quickstarts",
  47. "required": true
  48. },
  49. {
  50. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.",
  51. "displayName": "Git Reference",
  52. "name": "SOURCE_REPOSITORY_REF",
  53. "value": "master",
  54. "required": false
  55. },
  56. {
  57. "description": "Set this to the relative path to your project if it is not in the root of your repository.",
  58. "displayName": "Context Directory",
  59. "name": "CONTEXT_DIR",
  60. "value": "datavirt/dynamicvdb-datafederation/app",
  61. "required": false
  62. },
  63. {
  64. "description": "The name of the service account to use for the deployment. The service account should be configured to allow usage of the secret specified by CONFIGURATION_NAME.",
  65. "displayName": "Service Account Name",
  66. "name": "SERVICE_ACCOUNT_NAME",
  67. "value": "datavirt-service-account",
  68. "required": true
  69. },
  70. {
  71. "description": "Username associated with Teiid data service.",
  72. "displayName": "Teiid Username",
  73. "name": "TEIID_USERNAME",
  74. "from": "[\\a]{8}",
  75. "generate": "expression",
  76. "required": true
  77. },
  78. {
  79. "description": "Password for Teiid user.",
  80. "displayName": "Teiid User Password",
  81. "name": "TEIID_PASSWORD",
  82. "from": "[\\a\\A]{8}[\\d]{1}[\\A]{1}",
  83. "generate": "expression",
  84. "required": true
  85. },
  86. {
  87. "description": "Username associated with ModeShape.",
  88. "displayName": "ModeShape Username",
  89. "name": "MODESHAPE_USERNAME",
  90. "from": "[\\a]{8}",
  91. "generate": "expression",
  92. "required": true
  93. },
  94. {
  95. "description": "Password for ModeShape user.",
  96. "displayName": "ModeShape User Password",
  97. "name": "MODESHAPE_PASSWORD",
  98. "from": "[\\a\\A]{8}[\\d]{1}[\\A]{1}",
  99. "generate": "expression",
  100. "required": true
  101. },
  102. {
  103. "description": "A secret string used to configure the GitHub webhook.",
  104. "displayName": "Github Webhook Secret",
  105. "name": "GITHUB_WEBHOOK_SECRET",
  106. "from": "[a-zA-Z0-9]{8}",
  107. "generate": "expression",
  108. "required": true
  109. },
  110. {
  111. "description": "A secret string used to configure the Generic webhook.",
  112. "displayName": "Generic Webhook Secret",
  113. "name": "GENERIC_WEBHOOK_SECRET",
  114. "from": "[a-zA-Z0-9]{8}",
  115. "generate": "expression",
  116. "required": true
  117. },
  118. {
  119. "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.",
  120. "displayName": "ImageStream Namespace",
  121. "name": "IMAGE_STREAM_NAMESPACE",
  122. "value": "openshift",
  123. "required": true
  124. },
  125. {
  126. "description": "Password used by JGroups to authenticate nodes in the cluster.",
  127. "displayName": "JGroups Cluster Password",
  128. "name": "JGROUPS_CLUSTER_PASSWORD",
  129. "from": "[a-zA-Z0-9]{8}",
  130. "generate": "expression",
  131. "required": true
  132. },
  133. {
  134. "description": "Controls whether exploded deployment content should be automatically deployed",
  135. "displayName": "Deploy Exploded Archives",
  136. "name": "AUTO_DEPLOY_EXPLODED",
  137. "value": "false",
  138. "required": false
  139. },
  140. {
  141. "description": "Comma delimited list of source directories containing VDBs for deployment",
  142. "displayName": "VDB Deployment Directories",
  143. "name": "VDB_DIRS",
  144. "value": "",
  145. "required": false
  146. },
  147. {
  148. "displayName": "Maven mirror URL",
  149. "description": "Maven mirror to use for S2I builds",
  150. "name": "MAVEN_MIRROR_URL",
  151. "value": "",
  152. "required": false
  153. },
  154. {
  155. "displayName": "Artifact Directories",
  156. "description": "List of directories from which archives will be copied into the deployment folder. If unspecified, all archives in /target will be copied.",
  157. "name": "ARTIFACT_DIR",
  158. "value": "",
  159. "required": false
  160. }
  161. ],
  162. "objects": [
  163. {
  164. "kind": "Service",
  165. "apiVersion": "v1",
  166. "spec": {
  167. "ports": [
  168. {
  169. "name": "http",
  170. "port": 8080,
  171. "targetPort": "http"
  172. },
  173. {
  174. "name": "jdbc",
  175. "port": 31000,
  176. "targetPort": "jdbc"
  177. },
  178. {
  179. "name": "odbc",
  180. "port": 35432,
  181. "targetPort": "odbc"
  182. }
  183. ],
  184. "selector": {
  185. "deploymentConfig": "${APPLICATION_NAME}"
  186. }
  187. },
  188. "metadata": {
  189. "name": "${APPLICATION_NAME}",
  190. "labels": {
  191. "application": "${APPLICATION_NAME}"
  192. },
  193. "annotations": {
  194. "description": "The data virtualization services."
  195. }
  196. }
  197. },
  198. {
  199. "kind": "Route",
  200. "apiVersion": "v1",
  201. "id": "${APPLICATION_NAME}-http",
  202. "metadata": {
  203. "name": "${APPLICATION_NAME}",
  204. "labels": {
  205. "application": "${APPLICATION_NAME}"
  206. },
  207. "annotations": {
  208. "description": "Route for application's http (REST) service."
  209. }
  210. },
  211. "spec": {
  212. "host": "${HOSTNAME_HTTP}",
  213. "port": {
  214. "targetPort": "http"
  215. },
  216. "to": {
  217. "name": "${APPLICATION_NAME}"
  218. }
  219. }
  220. },
  221. {
  222. "kind": "ImageStream",
  223. "apiVersion": "v1",
  224. "metadata": {
  225. "name": "${APPLICATION_NAME}",
  226. "labels": {
  227. "application": "${APPLICATION_NAME}"
  228. }
  229. }
  230. },
  231. {
  232. "kind": "BuildConfig",
  233. "apiVersion": "v1",
  234. "metadata": {
  235. "name": "${APPLICATION_NAME}",
  236. "labels": {
  237. "application": "${APPLICATION_NAME}"
  238. }
  239. },
  240. "spec": {
  241. "source": {
  242. "type": "Git",
  243. "git": {
  244. "uri": "${SOURCE_REPOSITORY_URL}",
  245. "ref": "${SOURCE_REPOSITORY_REF}"
  246. },
  247. "contextDir": "${CONTEXT_DIR}",
  248. "images": [
  249. {
  250. "from": {
  251. "kind": "ImageStreamTag",
  252. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  253. "name": "jboss-datagrid65-client-openshift:1.1"
  254. },
  255. "paths": [
  256. {
  257. "destinationDir": "./${CONTEXT_DIR}/extensions/datagrid65",
  258. "sourcePath": "/extensions/."
  259. }
  260. ]
  261. }
  262. ]
  263. },
  264. "strategy": {
  265. "type": "Source",
  266. "sourceStrategy": {
  267. "forcePull": true,
  268. "from": {
  269. "kind": "ImageStreamTag",
  270. "namespace": "${IMAGE_STREAM_NAMESPACE}",
  271. "name": "jboss-datavirt63-openshift:1.3"
  272. },
  273. "env": [
  274. {
  275. "name": "MAVEN_MIRROR_URL",
  276. "value": "${MAVEN_MIRROR_URL}"
  277. },
  278. {
  279. "name": "CUSTOM_INSTALL_DIRECTORIES",
  280. "value": "extensions/*"
  281. },
  282. {
  283. "name": "VDB_DIRS",
  284. "value": "${VDB_DIRS}"
  285. },
  286. {
  287. "name": "ARTIFACT_DIR",
  288. "value": "${ARTIFACT_DIR}"
  289. }
  290. ]
  291. }
  292. },
  293. "output": {
  294. "to": {
  295. "kind": "ImageStreamTag",
  296. "name": "${APPLICATION_NAME}:latest"
  297. }
  298. },
  299. "triggers": [
  300. {
  301. "type": "GitHub",
  302. "github": {
  303. "secret": "${GITHUB_WEBHOOK_SECRET}"
  304. }
  305. },
  306. {
  307. "type": "Generic",
  308. "generic": {
  309. "secret": "${GENERIC_WEBHOOK_SECRET}"
  310. }
  311. },
  312. {
  313. "type": "ImageChange",
  314. "imageChange": {}
  315. },
  316. {
  317. "type": "ImageChange",
  318. "imageChange": {
  319. "from": {
  320. "kind": "ImageStreamTag",
  321. "name": "jboss-datagrid65-client-openshift:1.1"
  322. }
  323. }
  324. },
  325. {
  326. "type": "ConfigChange"
  327. }
  328. ]
  329. }
  330. },
  331. {
  332. "kind": "DeploymentConfig",
  333. "apiVersion": "v1",
  334. "metadata": {
  335. "name": "${APPLICATION_NAME}",
  336. "labels": {
  337. "application": "${APPLICATION_NAME}"
  338. }
  339. },
  340. "spec": {
  341. "strategy": {
  342. "type": "Recreate"
  343. },
  344. "triggers": [
  345. {
  346. "type": "ImageChange",
  347. "imageChangeParams": {
  348. "automatic": true,
  349. "containerNames": [
  350. "${APPLICATION_NAME}"
  351. ],
  352. "from": {
  353. "kind": "ImageStreamTag",
  354. "name": "${APPLICATION_NAME}:latest"
  355. }
  356. }
  357. },
  358. {
  359. "type": "ConfigChange"
  360. }
  361. ],
  362. "replicas": 1,
  363. "selector": {
  364. "deploymentConfig": "${APPLICATION_NAME}"
  365. },
  366. "template": {
  367. "metadata": {
  368. "name": "${APPLICATION_NAME}",
  369. "labels": {
  370. "deploymentConfig": "${APPLICATION_NAME}",
  371. "application": "${APPLICATION_NAME}"
  372. }
  373. },
  374. "spec": {
  375. "serviceAccountName": "${SERVICE_ACCOUNT_NAME}",
  376. "terminationGracePeriodSeconds": 60,
  377. "containers": [
  378. {
  379. "name": "${APPLICATION_NAME}",
  380. "image": "${APPLICATION_NAME}",
  381. "imagePullPolicy": "Always",
  382. "volumeMounts": [
  383. {
  384. "name": "configuration",
  385. "mountPath": "/etc/datavirt-environment",
  386. "readOnly": true
  387. }
  388. ],
  389. "livenessProbe": {
  390. "exec": {
  391. "command": [
  392. "/bin/bash",
  393. "-c",
  394. "/opt/eap/bin/livenessProbe.sh"
  395. ]
  396. }
  397. },
  398. "readinessProbe": {
  399. "exec": {
  400. "command": [
  401. "/bin/bash",
  402. "-c",
  403. "/opt/eap/bin/readinessProbe.sh"
  404. ]
  405. }
  406. },
  407. "ports": [
  408. {
  409. "name": "jolokia",
  410. "containerPort": 8778,
  411. "protocol": "TCP"
  412. },
  413. {
  414. "name": "http",
  415. "containerPort": 8080,
  416. "protocol": "TCP"
  417. },
  418. {
  419. "name": "jdbc",
  420. "containerPort": 31000,
  421. "protocol": "TCP"
  422. },
  423. {
  424. "name": "odbc",
  425. "containerPort": 35432,
  426. "protocol": "TCP"
  427. },
  428. {
  429. "name": "ping",
  430. "containerPort": 8888,
  431. "protocol": "TCP"
  432. }
  433. ],
  434. "env": [
  435. {
  436. "name": "OPENSHIFT_KUBE_PING_LABELS",
  437. "value": "application=${APPLICATION_NAME}"
  438. },
  439. {
  440. "name": "OPENSHIFT_KUBE_PING_NAMESPACE",
  441. "valueFrom": {
  442. "fieldRef": {
  443. "fieldPath": "metadata.namespace"
  444. }
  445. }
  446. },
  447. {
  448. "name": "JGROUPS_CLUSTER_PASSWORD",
  449. "value": "${JGROUPS_CLUSTER_PASSWORD}"
  450. },
  451. {
  452. "name": "AUTO_DEPLOY_EXPLODED",
  453. "value": "${AUTO_DEPLOY_EXPLODED}"
  454. },
  455. {
  456. "name": "TEIID_USERNAME",
  457. "value": "${TEIID_USERNAME}"
  458. },
  459. {
  460. "name": "TEIID_PASSWORD",
  461. "value": "${TEIID_PASSWORD}"
  462. },
  463. {
  464. "name": "MODESHAPE_USERNAME",
  465. "value": "${MODESHAPE_USERNAME}"
  466. },
  467. {
  468. "name": "MODESHAPE_PASSWORD",
  469. "value": "${MODESHAPE_PASSWORD}"
  470. },
  471. {
  472. "name": "ENV_FILES",
  473. "value": "/etc/datavirt-environment/*"
  474. }
  475. ]
  476. }
  477. ],
  478. "volumes": [
  479. {
  480. "name": "configuration",
  481. "secret": {
  482. "secretName": "${CONFIGURATION_NAME}"
  483. }
  484. }
  485. ]
  486. }
  487. }
  488. }
  489. }
  490. ]
  491. }