dancer-mysql-persistent.json 15 KB

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