dancer-mysql.json 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. {
  2. "apiVersion": "v1",
  3. "kind": "Template",
  4. "labels": {
  5. "app": "dancer-mysql-example",
  6. "template": "dancer-mysql-example"
  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.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing.",
  12. "iconClass": "icon-perl",
  13. "openshift.io/display-name": "Dancer + MySQL (Ephemeral)",
  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. The database is stored in non-persistent storage, so this configuration should be used for experimental purposes only.",
  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-example"
  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-example",
  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-example"
  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": "Service",
  267. "metadata": {
  268. "annotations": {
  269. "description": "Exposes the database server"
  270. },
  271. "name": "${DATABASE_SERVICE_NAME}"
  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. "apiVersion": "v1",
  288. "kind": "DeploymentConfig",
  289. "metadata": {
  290. "annotations": {
  291. "description": "Defines how to deploy the database",
  292. "template.alpha.openshift.io/wait-for-ready": "true"
  293. },
  294. "name": "${DATABASE_SERVICE_NAME}"
  295. },
  296. "spec": {
  297. "replicas": 1,
  298. "selector": {
  299. "name": "${DATABASE_SERVICE_NAME}"
  300. },
  301. "strategy": {
  302. "type": "Recreate"
  303. },
  304. "template": {
  305. "metadata": {
  306. "labels": {
  307. "name": "${DATABASE_SERVICE_NAME}"
  308. },
  309. "name": "${DATABASE_SERVICE_NAME}"
  310. },
  311. "spec": {
  312. "containers": [
  313. {
  314. "env": [
  315. {
  316. "name": "MYSQL_USER",
  317. "valueFrom": {
  318. "secretKeyRef": {
  319. "key": "database-user",
  320. "name": "${NAME}"
  321. }
  322. }
  323. },
  324. {
  325. "name": "MYSQL_PASSWORD",
  326. "valueFrom": {
  327. "secretKeyRef": {
  328. "key": "database-password",
  329. "name": "${NAME}"
  330. }
  331. }
  332. },
  333. {
  334. "name": "MYSQL_DATABASE",
  335. "value": "${DATABASE_NAME}"
  336. }
  337. ],
  338. "image": " ",
  339. "livenessProbe": {
  340. "initialDelaySeconds": 30,
  341. "tcpSocket": {
  342. "port": 3306
  343. },
  344. "timeoutSeconds": 1
  345. },
  346. "name": "mysql",
  347. "ports": [
  348. {
  349. "containerPort": 3306
  350. }
  351. ],
  352. "readinessProbe": {
  353. "exec": {
  354. "command": [
  355. "/bin/sh",
  356. "-i",
  357. "-c",
  358. "MYSQL_PWD='${DATABASE_PASSWORD}' mysql -h 127.0.0.1 -u ${DATABASE_USER} -D ${DATABASE_NAME} -e 'SELECT 1'"
  359. ]
  360. },
  361. "initialDelaySeconds": 5,
  362. "timeoutSeconds": 1
  363. },
  364. "resources": {
  365. "limits": {
  366. "memory": "${MEMORY_MYSQL_LIMIT}"
  367. }
  368. },
  369. "volumeMounts": [
  370. {
  371. "mountPath": "/var/lib/mysql/data",
  372. "name": "data"
  373. }
  374. ]
  375. }
  376. ],
  377. "volumes": [
  378. {
  379. "emptyDir": {},
  380. "name": "data"
  381. }
  382. ]
  383. }
  384. },
  385. "triggers": [
  386. {
  387. "imageChangeParams": {
  388. "automatic": true,
  389. "containerNames": [
  390. "mysql"
  391. ],
  392. "from": {
  393. "kind": "ImageStreamTag",
  394. "name": "mysql:5.7",
  395. "namespace": "${NAMESPACE}"
  396. }
  397. },
  398. "type": "ImageChange"
  399. },
  400. {
  401. "type": "ConfigChange"
  402. }
  403. ]
  404. }
  405. }
  406. ],
  407. "parameters": [
  408. {
  409. "description": "The name assigned to all of the frontend objects defined in this template.",
  410. "displayName": "Name",
  411. "name": "NAME",
  412. "required": true,
  413. "value": "dancer-mysql-example"
  414. },
  415. {
  416. "description": "The OpenShift Namespace where the ImageStream resides.",
  417. "displayName": "Namespace",
  418. "name": "NAMESPACE",
  419. "required": true,
  420. "value": "openshift"
  421. },
  422. {
  423. "description": "Maximum amount of memory the Perl Dancer container can use.",
  424. "displayName": "Memory Limit",
  425. "name": "MEMORY_LIMIT",
  426. "required": true,
  427. "value": "512Mi"
  428. },
  429. {
  430. "description": "Maximum amount of memory the MySQL container can use.",
  431. "displayName": "Memory Limit (MySQL)",
  432. "name": "MEMORY_MYSQL_LIMIT",
  433. "required": true,
  434. "value": "512Mi"
  435. },
  436. {
  437. "description": "The URL of the repository with your application source code.",
  438. "displayName": "Git Repository URL",
  439. "name": "SOURCE_REPOSITORY_URL",
  440. "required": true,
  441. "value": "https://github.com/openshift/dancer-ex.git"
  442. },
  443. {
  444. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.",
  445. "displayName": "Git Reference",
  446. "name": "SOURCE_REPOSITORY_REF"
  447. },
  448. {
  449. "description": "Set this to the relative path to your project if it is not in the root of your repository.",
  450. "displayName": "Context Directory",
  451. "name": "CONTEXT_DIR"
  452. },
  453. {
  454. "description": "The exposed hostname that will route to the Dancer service, if left blank a value will be defaulted.",
  455. "displayName": "Application Hostname",
  456. "name": "APPLICATION_DOMAIN",
  457. "value": ""
  458. },
  459. {
  460. "description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
  461. "displayName": "GitHub Webhook Secret",
  462. "from": "[a-zA-Z0-9]{40}",
  463. "generate": "expression",
  464. "name": "GITHUB_WEBHOOK_SECRET"
  465. },
  466. {
  467. "displayName": "Database Service Name",
  468. "name": "DATABASE_SERVICE_NAME",
  469. "required": true,
  470. "value": "database"
  471. },
  472. {
  473. "displayName": "Database Username",
  474. "from": "user[A-Z0-9]{3}",
  475. "generate": "expression",
  476. "name": "DATABASE_USER"
  477. },
  478. {
  479. "displayName": "Database Password",
  480. "from": "[a-zA-Z0-9]{8}",
  481. "generate": "expression",
  482. "name": "DATABASE_PASSWORD"
  483. },
  484. {
  485. "displayName": "Database Name",
  486. "name": "DATABASE_NAME",
  487. "required": true,
  488. "value": "sampledb"
  489. },
  490. {
  491. "description": "Set this to \"true\" to enable automatic reloading of modified Perl modules.",
  492. "displayName": "Perl Module Reload",
  493. "name": "PERL_APACHE2_RELOAD",
  494. "value": ""
  495. },
  496. {
  497. "description": "Your secret key for verifying the integrity of signed cookies.",
  498. "displayName": "Secret Key",
  499. "from": "[a-z0-9]{127}",
  500. "generate": "expression",
  501. "name": "SECRET_KEY_BASE"
  502. },
  503. {
  504. "description": "The custom CPAN mirror URL",
  505. "displayName": "Custom CPAN Mirror URL",
  506. "name": "CPAN_MIRROR",
  507. "value": ""
  508. }
  509. ]
  510. }