cakephp-mysql.json 13 KB

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