cakephp-mysql-persistent.json 23 KB

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