dancer-mysql.json 15 KB

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