cakephp-mysql-persistent.json 23 KB

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