cakephp-mysql-persistent.json 17 KB

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