cakephp-mysql.json 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  1. {
  2. "apiVersion": "v1",
  3. "kind": "Template",
  4. "labels": {
  5. "app": "cakephp-mysql-example",
  6. "template": "cakephp-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/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.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing.",
  12. "iconClass": "icon-php",
  13. "openshift.io/display-name": "CakePHP + MySQL (Ephemeral)",
  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. 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,php,cakephp",
  19. "template.openshift.io/bindable": "false"
  20. },
  21. "name": "cakephp-mysql-example"
  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-example"
  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-example",
  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-example"
  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": "Service",
  294. "metadata": {
  295. "annotations": {
  296. "description": "Exposes the database server"
  297. },
  298. "name": "${DATABASE_SERVICE_NAME}"
  299. },
  300. "spec": {
  301. "ports": [
  302. {
  303. "name": "mysql",
  304. "port": 3306,
  305. "targetPort": 3306
  306. }
  307. ],
  308. "selector": {
  309. "name": "${DATABASE_SERVICE_NAME}"
  310. }
  311. }
  312. },
  313. {
  314. "apiVersion": "v1",
  315. "kind": "DeploymentConfig",
  316. "metadata": {
  317. "annotations": {
  318. "description": "Defines how to deploy the database",
  319. "template.alpha.openshift.io/wait-for-ready": "true"
  320. },
  321. "name": "${DATABASE_SERVICE_NAME}"
  322. },
  323. "spec": {
  324. "replicas": 1,
  325. "selector": {
  326. "name": "${DATABASE_SERVICE_NAME}"
  327. },
  328. "strategy": {
  329. "type": "Recreate"
  330. },
  331. "template": {
  332. "metadata": {
  333. "labels": {
  334. "name": "${DATABASE_SERVICE_NAME}"
  335. },
  336. "name": "${DATABASE_SERVICE_NAME}"
  337. },
  338. "spec": {
  339. "containers": [
  340. {
  341. "env": [
  342. {
  343. "name": "MYSQL_USER",
  344. "valueFrom": {
  345. "secretKeyRef": {
  346. "key": "database-user",
  347. "name": "${NAME}"
  348. }
  349. }
  350. },
  351. {
  352. "name": "MYSQL_PASSWORD",
  353. "valueFrom": {
  354. "secretKeyRef": {
  355. "key": "database-password",
  356. "name": "${NAME}"
  357. }
  358. }
  359. },
  360. {
  361. "name": "MYSQL_DATABASE",
  362. "value": "${DATABASE_NAME}"
  363. }
  364. ],
  365. "image": " ",
  366. "livenessProbe": {
  367. "initialDelaySeconds": 30,
  368. "tcpSocket": {
  369. "port": 3306
  370. },
  371. "timeoutSeconds": 1
  372. },
  373. "name": "mysql",
  374. "ports": [
  375. {
  376. "containerPort": 3306
  377. }
  378. ],
  379. "readinessProbe": {
  380. "exec": {
  381. "command": [
  382. "/bin/sh",
  383. "-i",
  384. "-c",
  385. "MYSQL_PWD='${DATABASE_PASSWORD}' mysql -h 127.0.0.1 -u ${DATABASE_USER} -D ${DATABASE_NAME} -e 'SELECT 1'"
  386. ]
  387. },
  388. "initialDelaySeconds": 5,
  389. "timeoutSeconds": 1
  390. },
  391. "resources": {
  392. "limits": {
  393. "memory": "${MEMORY_MYSQL_LIMIT}"
  394. }
  395. },
  396. "volumeMounts": [
  397. {
  398. "mountPath": "/var/lib/mysql/data",
  399. "name": "data"
  400. }
  401. ]
  402. }
  403. ],
  404. "volumes": [
  405. {
  406. "emptyDir": {},
  407. "name": "data"
  408. }
  409. ]
  410. }
  411. },
  412. "triggers": [
  413. {
  414. "imageChangeParams": {
  415. "automatic": true,
  416. "containerNames": [
  417. "mysql"
  418. ],
  419. "from": {
  420. "kind": "ImageStreamTag",
  421. "name": "mysql:5.7",
  422. "namespace": "${NAMESPACE}"
  423. }
  424. },
  425. "type": "ImageChange"
  426. },
  427. {
  428. "type": "ConfigChange"
  429. }
  430. ]
  431. }
  432. }
  433. ],
  434. "parameters": [
  435. {
  436. "description": "The name assigned to all of the frontend objects defined in this template.",
  437. "displayName": "Name",
  438. "name": "NAME",
  439. "required": true,
  440. "value": "cakephp-mysql-example"
  441. },
  442. {
  443. "description": "The OpenShift Namespace where the ImageStream resides.",
  444. "displayName": "Namespace",
  445. "name": "NAMESPACE",
  446. "required": true,
  447. "value": "openshift"
  448. },
  449. {
  450. "description": "Version of PHP image to be used (5.6, 7.0, 7.1 or latest).",
  451. "displayName": "PHP Version",
  452. "name": "PHP_VERSION",
  453. "required": true,
  454. "value": "7.1"
  455. },
  456. {
  457. "description": "Maximum amount of memory the CakePHP container can use.",
  458. "displayName": "Memory Limit",
  459. "name": "MEMORY_LIMIT",
  460. "required": true,
  461. "value": "512Mi"
  462. },
  463. {
  464. "description": "Maximum amount of memory the MySQL container can use.",
  465. "displayName": "Memory Limit (MySQL)",
  466. "name": "MEMORY_MYSQL_LIMIT",
  467. "required": true,
  468. "value": "512Mi"
  469. },
  470. {
  471. "description": "The URL of the repository with your application source code.",
  472. "displayName": "Git Repository URL",
  473. "name": "SOURCE_REPOSITORY_URL",
  474. "required": true,
  475. "value": "https://github.com/sclorg/cakephp-ex.git"
  476. },
  477. {
  478. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.",
  479. "displayName": "Git Reference",
  480. "name": "SOURCE_REPOSITORY_REF"
  481. },
  482. {
  483. "description": "Set this to the relative path to your project if it is not in the root of your repository.",
  484. "displayName": "Context Directory",
  485. "name": "CONTEXT_DIR"
  486. },
  487. {
  488. "description": "The exposed hostname that will route to the CakePHP service, if left blank a value will be defaulted.",
  489. "displayName": "Application Hostname",
  490. "name": "APPLICATION_DOMAIN",
  491. "value": ""
  492. },
  493. {
  494. "description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
  495. "displayName": "GitHub Webhook Secret",
  496. "from": "[a-zA-Z0-9]{40}",
  497. "generate": "expression",
  498. "name": "GITHUB_WEBHOOK_SECRET"
  499. },
  500. {
  501. "displayName": "Database Service Name",
  502. "name": "DATABASE_SERVICE_NAME",
  503. "required": true,
  504. "value": "mysql"
  505. },
  506. {
  507. "description": "Database engine: postgresql, mysql or sqlite (default).",
  508. "displayName": "Database Engine",
  509. "name": "DATABASE_ENGINE",
  510. "required": true,
  511. "value": "mysql"
  512. },
  513. {
  514. "displayName": "Database Name",
  515. "name": "DATABASE_NAME",
  516. "required": true,
  517. "value": "default"
  518. },
  519. {
  520. "displayName": "Database User",
  521. "name": "DATABASE_USER",
  522. "required": true,
  523. "value": "cakephp"
  524. },
  525. {
  526. "displayName": "Database Password",
  527. "from": "[a-zA-Z0-9]{16}",
  528. "generate": "expression",
  529. "name": "DATABASE_PASSWORD"
  530. },
  531. {
  532. "description": "Set this to a long random string.",
  533. "displayName": "CakePHP secret token",
  534. "from": "[\\w]{50}",
  535. "generate": "expression",
  536. "name": "CAKEPHP_SECRET_TOKEN"
  537. },
  538. {
  539. "description": "Security salt for session hash.",
  540. "displayName": "CakePHP Security Salt",
  541. "from": "[a-zA-Z0-9]{40}",
  542. "generate": "expression",
  543. "name": "CAKEPHP_SECURITY_SALT"
  544. },
  545. {
  546. "description": "How often to check script timestamps for updates, in seconds. 0 will result in OPcache checking for updates on every request.",
  547. "displayName": "OPcache Revalidation Frequency",
  548. "name": "OPCACHE_REVALIDATE_FREQ",
  549. "value": "2"
  550. },
  551. {
  552. "description": "The custom Composer mirror URL",
  553. "displayName": "Custom Composer Mirror URL",
  554. "name": "COMPOSER_MIRROR",
  555. "value": ""
  556. }
  557. ]
  558. }