cakephp-mysql.json 16 KB

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