dancer-mysql.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "dancer-mysql-example",
  6. "annotations": {
  7. "description": "An example Dancer application with a MySQL database",
  8. "tags": "quickstart,perl,dancer,mysql",
  9. "iconClass": "icon-perl"
  10. }
  11. },
  12. "labels": {
  13. "template": "dancer-mysql-example"
  14. },
  15. "objects": [
  16. {
  17. "kind": "Service",
  18. "apiVersion": "v1",
  19. "metadata": {
  20. "name": "${NAME}",
  21. "annotations": {
  22. "description": "Exposes and load balances the application pods"
  23. }
  24. },
  25. "spec": {
  26. "ports": [
  27. {
  28. "name": "web",
  29. "port": 8080,
  30. "targetPort": 8080
  31. }
  32. ],
  33. "selector": {
  34. "name": "${NAME}"
  35. }
  36. }
  37. },
  38. {
  39. "kind": "Route",
  40. "apiVersion": "v1",
  41. "metadata": {
  42. "name": "${NAME}"
  43. },
  44. "spec": {
  45. "host": "${APPLICATION_DOMAIN}",
  46. "to": {
  47. "kind": "Service",
  48. "name": "${NAME}"
  49. }
  50. }
  51. },
  52. {
  53. "kind": "ImageStream",
  54. "apiVersion": "v1",
  55. "metadata": {
  56. "name": "${NAME}",
  57. "annotations": {
  58. "description": "Keeps track of changes in the application image"
  59. }
  60. }
  61. },
  62. {
  63. "kind": "BuildConfig",
  64. "apiVersion": "v1",
  65. "metadata": {
  66. "name": "${NAME}",
  67. "annotations": {
  68. "description": "Defines how to build the application"
  69. }
  70. },
  71. "spec": {
  72. "source": {
  73. "type": "Git",
  74. "git": {
  75. "uri": "${SOURCE_REPOSITORY_URL}",
  76. "ref": "${SOURCE_REPOSITORY_REF}"
  77. },
  78. "contextDir": "${CONTEXT_DIR}"
  79. },
  80. "strategy": {
  81. "type": "Source",
  82. "sourceStrategy": {
  83. "from": {
  84. "kind": "ImageStreamTag",
  85. "namespace": "${NAMESPACE}",
  86. "name": "perl:5.20"
  87. },
  88. "env": [
  89. {
  90. "name": "CPAN_MIRROR",
  91. "value": "${CPAN_MIRROR}"
  92. }
  93. ]
  94. }
  95. },
  96. "output": {
  97. "to": {
  98. "kind": "ImageStreamTag",
  99. "name": "${NAME}:latest"
  100. }
  101. },
  102. "triggers": [
  103. {
  104. "type": "ImageChange"
  105. },
  106. {
  107. "type": "ConfigChange"
  108. },
  109. {
  110. "type": "GitHub",
  111. "github": {
  112. "secret": "${GITHUB_WEBHOOK_SECRET}"
  113. }
  114. }
  115. ]
  116. }
  117. },
  118. {
  119. "kind": "DeploymentConfig",
  120. "apiVersion": "v1",
  121. "metadata": {
  122. "name": "${NAME}",
  123. "annotations": {
  124. "description": "Defines how to deploy the application server"
  125. }
  126. },
  127. "spec": {
  128. "triggers": [
  129. {
  130. "type": "ImageChange",
  131. "imageChangeParams": {
  132. "automatic": true,
  133. "containerNames": [
  134. "dancer-mysql-example"
  135. ],
  136. "from": {
  137. "kind": "ImageStreamTag",
  138. "name": "${NAME}:latest"
  139. }
  140. }
  141. },
  142. {
  143. "type": "ConfigChange"
  144. }
  145. ],
  146. "replicas": 1,
  147. "selector": {
  148. "name": "${NAME}"
  149. },
  150. "template": {
  151. "metadata": {
  152. "name": "${NAME}",
  153. "labels": {
  154. "name": "${NAME}"
  155. }
  156. },
  157. "spec": {
  158. "containers": [
  159. {
  160. "name": "dancer-mysql-example",
  161. "image": " ",
  162. "ports": [
  163. {
  164. "containerPort": 8080
  165. }
  166. ],
  167. "readinessProbe": {
  168. "timeoutSeconds": 3,
  169. "initialDelaySeconds": 3,
  170. "httpGet": {
  171. "path": "/health",
  172. "port": 8080
  173. }
  174. },
  175. "livenessProbe": {
  176. "timeoutSeconds": 3,
  177. "initialDelaySeconds": 30,
  178. "httpGet": {
  179. "path": "/",
  180. "port": 8080
  181. }
  182. },
  183. "env": [
  184. {
  185. "name": "DATABASE_SERVICE_NAME",
  186. "value": "${DATABASE_SERVICE_NAME}"
  187. },
  188. {
  189. "name": "MYSQL_USER",
  190. "value": "${DATABASE_USER}"
  191. },
  192. {
  193. "name": "MYSQL_PASSWORD",
  194. "value": "${DATABASE_PASSWORD}"
  195. },
  196. {
  197. "name": "MYSQL_DATABASE",
  198. "value": "${DATABASE_NAME}"
  199. },
  200. {
  201. "name": "SECRET_KEY_BASE",
  202. "value": "${SECRET_KEY_BASE}"
  203. },
  204. {
  205. "name": "PERL_APACHE2_RELOAD",
  206. "value": "${PERL_APACHE2_RELOAD}"
  207. }
  208. ],
  209. "resources": {
  210. "limits": {
  211. "memory": "${MEMORY_LIMIT}"
  212. }
  213. }
  214. }
  215. ]
  216. }
  217. }
  218. }
  219. },
  220. {
  221. "kind": "Service",
  222. "apiVersion": "v1",
  223. "metadata": {
  224. "name": "${DATABASE_SERVICE_NAME}",
  225. "annotations": {
  226. "description": "Exposes the database server"
  227. }
  228. },
  229. "spec": {
  230. "ports": [
  231. {
  232. "name": "mysql",
  233. "port": 3306,
  234. "targetPort": 3306
  235. }
  236. ],
  237. "selector": {
  238. "name": "${DATABASE_SERVICE_NAME}"
  239. }
  240. }
  241. },
  242. {
  243. "kind": "DeploymentConfig",
  244. "apiVersion": "v1",
  245. "metadata": {
  246. "name": "${DATABASE_SERVICE_NAME}",
  247. "annotations": {
  248. "description": "Defines how to deploy the database"
  249. }
  250. },
  251. "spec": {
  252. "strategy": {
  253. "type": "Recreate"
  254. },
  255. "triggers": [
  256. {
  257. "type": "ImageChange",
  258. "imageChangeParams": {
  259. "automatic": true,
  260. "containerNames": [
  261. "mysql"
  262. ],
  263. "from": {
  264. "kind": "ImageStreamTag",
  265. "namespace": "${NAMESPACE}",
  266. "name": "mysql:5.6"
  267. }
  268. }
  269. },
  270. {
  271. "type": "ConfigChange"
  272. }
  273. ],
  274. "replicas": 1,
  275. "selector": {
  276. "name": "${DATABASE_SERVICE_NAME}"
  277. },
  278. "template": {
  279. "metadata": {
  280. "name": "${DATABASE_SERVICE_NAME}",
  281. "labels": {
  282. "name": "${DATABASE_SERVICE_NAME}"
  283. }
  284. },
  285. "spec": {
  286. "volumes": [
  287. {
  288. "name": "data",
  289. "emptyDir": {}
  290. }
  291. ],
  292. "containers": [
  293. {
  294. "name": "mysql",
  295. "image": " ",
  296. "ports": [
  297. {
  298. "containerPort": 3306
  299. }
  300. ],
  301. "volumeMounts": [
  302. {
  303. "name": "data",
  304. "mountPath": "/var/lib/mysql/data"
  305. }
  306. ],
  307. "readinessProbe": {
  308. "timeoutSeconds": 1,
  309. "initialDelaySeconds": 5,
  310. "exec": {
  311. "command": [ "/bin/sh", "-i", "-c", "MYSQL_PWD='${DATABASE_PASSWORD}' mysql -h 127.0.0.1 -u ${DATABASE_USER} -D ${DATABASE_NAME} -e 'SELECT 1'" ]
  312. }
  313. },
  314. "livenessProbe": {
  315. "timeoutSeconds": 1,
  316. "initialDelaySeconds": 30,
  317. "tcpSocket": {
  318. "port": 3306
  319. }
  320. },
  321. "env": [
  322. {
  323. "name": "MYSQL_USER",
  324. "value": "${DATABASE_USER}"
  325. },
  326. {
  327. "name": "MYSQL_PASSWORD",
  328. "value": "${DATABASE_PASSWORD}"
  329. },
  330. {
  331. "name": "MYSQL_DATABASE",
  332. "value": "${DATABASE_NAME}"
  333. }
  334. ],
  335. "resources": {
  336. "limits": {
  337. "memory": "${MEMORY_MYSQL_LIMIT}"
  338. }
  339. }
  340. }
  341. ]
  342. }
  343. }
  344. }
  345. }
  346. ],
  347. "parameters": [
  348. {
  349. "name": "NAME",
  350. "displayName": "Name",
  351. "description": "The name assigned to all of the frontend objects defined in this template.",
  352. "required": true,
  353. "value": "dancer-mysql-example"
  354. },
  355. {
  356. "name": "NAMESPACE",
  357. "displayName": "Namespace",
  358. "description": "The OpenShift Namespace where the ImageStream resides.",
  359. "required": true,
  360. "value": "openshift"
  361. },
  362. {
  363. "name": "MEMORY_LIMIT",
  364. "displayName": "Memory Limit",
  365. "description": "Maximum amount of memory the Perl Dancer container can use.",
  366. "required": true,
  367. "value": "512Mi"
  368. },
  369. {
  370. "name": "MEMORY_MYSQL_LIMIT",
  371. "displayName": "Memory Limit (MySQL)",
  372. "description": "Maximum amount of memory the MySQL container can use.",
  373. "required": true,
  374. "value": "512Mi"
  375. },
  376. {
  377. "name": "SOURCE_REPOSITORY_URL",
  378. "displayName": "Git Repository URL",
  379. "description": "The URL of the repository with your application source code.",
  380. "required": true,
  381. "value": "https://github.com/openshift/dancer-ex.git"
  382. },
  383. {
  384. "name": "SOURCE_REPOSITORY_REF",
  385. "displayName": "Git Reference",
  386. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
  387. },
  388. {
  389. "name": "CONTEXT_DIR",
  390. "displayName": "Context Directory",
  391. "description": "Set this to the relative path to your project if it is not in the root of your repository."
  392. },
  393. {
  394. "name": "APPLICATION_DOMAIN",
  395. "displayName": "Application Hostname",
  396. "description": "The exposed hostname that will route to the Dancer service, if left blank a value will be defaulted.",
  397. "value": ""
  398. },
  399. {
  400. "name": "GITHUB_WEBHOOK_SECRET",
  401. "displayName": "GitHub Webhook Secret",
  402. "description": "A secret string used to configure the GitHub webhook.",
  403. "generate": "expression",
  404. "from": "[a-zA-Z0-9]{40}"
  405. },
  406. {
  407. "name": "ADMIN_USERNAME",
  408. "displayName": "Administrator Username",
  409. "generate": "expression",
  410. "from": "admin[A-Z0-9]{3}"
  411. },
  412. {
  413. "name": "ADMIN_PASSWORD",
  414. "displayName": "Administrator Password",
  415. "generate": "expression",
  416. "from": "[a-zA-Z0-9]{8}"
  417. },
  418. {
  419. "name": "DATABASE_SERVICE_NAME",
  420. "displayName": "Database Service Name",
  421. "required": true,
  422. "value": "database"
  423. },
  424. {
  425. "name": "DATABASE_USER",
  426. "displayName": "Database Username",
  427. "generate": "expression",
  428. "from": "user[A-Z0-9]{3}"
  429. },
  430. {
  431. "name": "DATABASE_PASSWORD",
  432. "displayName": "Database Password",
  433. "generate": "expression",
  434. "from": "[a-zA-Z0-9]{8}"
  435. },
  436. {
  437. "name": "DATABASE_NAME",
  438. "displayName": "Database Name",
  439. "required": true,
  440. "value": "sampledb"
  441. },
  442. {
  443. "name": "PERL_APACHE2_RELOAD",
  444. "displayName": "Perl Module Reload",
  445. "description": "Set this to \"true\" to enable automatic reloading of modified Perl modules.",
  446. "value": ""
  447. },
  448. {
  449. "name": "SECRET_KEY_BASE",
  450. "displayName": "Secret Key",
  451. "description": "Your secret key for verifying the integrity of signed cookies.",
  452. "generate": "expression",
  453. "from": "[a-z0-9]{127}"
  454. },
  455. {
  456. "name": "CPAN_MIRROR",
  457. "displayName": "Custom CPAN Mirror URL",
  458. "description": "The custom CPAN mirror URL",
  459. "value": ""
  460. }
  461. ]
  462. }