dancer-mysql-persistent.json 21 KB

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