cakephp.json 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "cakephp-example",
  6. "annotations": {
  7. "description": "An example CakePHP application with no database",
  8. "tags": "quickstart,php,cakephp",
  9. "iconClass": "icon-php"
  10. }
  11. },
  12. "labels": {
  13. "template": "cakephp-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. },
  131. "triggers": [
  132. {
  133. "type": "ImageChange",
  134. "imageChangeParams": {
  135. "automatic": true,
  136. "containerNames": [
  137. "cakephp-example"
  138. ],
  139. "from": {
  140. "kind": "ImageStreamTag",
  141. "name": "${NAME}:latest"
  142. }
  143. }
  144. },
  145. {
  146. "type": "ConfigChange"
  147. }
  148. ],
  149. "replicas": 1,
  150. "selector": {
  151. "name": "${NAME}"
  152. },
  153. "template": {
  154. "metadata": {
  155. "name": "${NAME}",
  156. "labels": {
  157. "name": "${NAME}"
  158. }
  159. },
  160. "spec": {
  161. "containers": [
  162. {
  163. "name": "cakephp-example",
  164. "image": " ",
  165. "ports": [
  166. {
  167. "containerPort": 8080
  168. }
  169. ],
  170. "readinessProbe": {
  171. "timeoutSeconds": 3,
  172. "initialDelaySeconds": 3,
  173. "httpGet": {
  174. "path": "/",
  175. "port": 8080
  176. }
  177. },
  178. "livenessProbe": {
  179. "timeoutSeconds": 3,
  180. "initialDelaySeconds": 30,
  181. "httpGet": {
  182. "path": "/",
  183. "port": 8080
  184. }
  185. },
  186. "env": [
  187. {
  188. "name": "DATABASE_SERVICE_NAME",
  189. "value": "${DATABASE_SERVICE_NAME}"
  190. },
  191. {
  192. "name": "DATABASE_ENGINE",
  193. "value": "${DATABASE_ENGINE}"
  194. },
  195. {
  196. "name": "DATABASE_NAME",
  197. "value": "${DATABASE_NAME}"
  198. },
  199. {
  200. "name": "DATABASE_USER",
  201. "value": "${DATABASE_USER}"
  202. },
  203. {
  204. "name": "DATABASE_PASSWORD",
  205. "value": "${DATABASE_PASSWORD}"
  206. },
  207. {
  208. "name": "CAKEPHP_SECRET_TOKEN",
  209. "value": "${CAKEPHP_SECRET_TOKEN}"
  210. },
  211. {
  212. "name": "CAKEPHP_SECURITY_SALT",
  213. "value": "${CAKEPHP_SECURITY_SALT}"
  214. },
  215. {
  216. "name": "CAKEPHP_SECURITY_CIPHER_SEED",
  217. "value": "${CAKEPHP_SECURITY_CIPHER_SEED}"
  218. },
  219. {
  220. "name": "OPCACHE_REVALIDATE_FREQ",
  221. "value": "${OPCACHE_REVALIDATE_FREQ}"
  222. }
  223. ],
  224. "resources": {
  225. "limits": {
  226. "memory": "${MEMORY_LIMIT}"
  227. }
  228. }
  229. }
  230. ]
  231. }
  232. }
  233. }
  234. }
  235. ],
  236. "parameters": [
  237. {
  238. "name": "NAME",
  239. "displayName": "Name",
  240. "description": "The name assigned to all of the frontend objects defined in this template.",
  241. "required": true,
  242. "value": "cakephp-example"
  243. },
  244. {
  245. "name": "NAMESPACE",
  246. "displayName": "Namespace",
  247. "description": "The OpenShift Namespace where the ImageStream resides.",
  248. "required": true,
  249. "value": "openshift"
  250. },
  251. {
  252. "name": "MEMORY_LIMIT",
  253. "displayName": "Memory Limit",
  254. "description": "Maximum amount of memory the container can use.",
  255. "required": true,
  256. "value": "512Mi"
  257. },
  258. {
  259. "name": "SOURCE_REPOSITORY_URL",
  260. "displayName": "Git Repository URL",
  261. "description": "The URL of the repository with your application source code.",
  262. "required": true,
  263. "value": "https://github.com/openshift/cakephp-ex.git"
  264. },
  265. {
  266. "name": "SOURCE_REPOSITORY_REF",
  267. "displayName": "Git Reference",
  268. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
  269. },
  270. {
  271. "name": "CONTEXT_DIR",
  272. "displayName": "Context Directory",
  273. "description": "Set this to the relative path to your project if it is not in the root of your repository."
  274. },
  275. {
  276. "name": "APPLICATION_DOMAIN",
  277. "displayName": "Application Hostname",
  278. "description": "The exposed hostname that will route to the CakePHP service, if left blank a value will be defaulted.",
  279. "value": ""
  280. },
  281. {
  282. "name": "GITHUB_WEBHOOK_SECRET",
  283. "displayName": "GitHub Webhook Secret",
  284. "description": "A secret string used to configure the GitHub webhook.",
  285. "generate": "expression",
  286. "from": "[a-zA-Z0-9]{40}"
  287. },
  288. {
  289. "name": "DATABASE_SERVICE_NAME",
  290. "displayName": "Database Service Name"
  291. },
  292. {
  293. "name": "DATABASE_ENGINE",
  294. "displayName": "Database Engine",
  295. "description": "Database engine: postgresql, mysql or sqlite (default)."
  296. },
  297. {
  298. "name": "DATABASE_NAME",
  299. "displayName": "Database Name"
  300. },
  301. {
  302. "name": "DATABASE_USER",
  303. "displayName": "Database User"
  304. },
  305. {
  306. "name": "DATABASE_PASSWORD",
  307. "displayName": "Database Password"
  308. },
  309. {
  310. "name": "CAKEPHP_SECRET_TOKEN",
  311. "displayName": "CakePHP Secret Token",
  312. "description": "Set this to a long random string.",
  313. "generate": "expression",
  314. "from": "[\\w]{50}"
  315. },
  316. {
  317. "name": "CAKEPHP_SECURITY_SALT",
  318. "displayName": "CakePHP Security Salt",
  319. "description": "Security salt for session hash.",
  320. "generate": "expression",
  321. "from": "[a-zA-Z0-9]{40}"
  322. },
  323. {
  324. "name": "CAKEPHP_SECURITY_CIPHER_SEED",
  325. "displayName": "CakePHP Security Cipher Seed",
  326. "description": "Security cipher seed for session hash.",
  327. "generate": "expression",
  328. "from": "[0-9]{30}"
  329. },
  330. {
  331. "name": "OPCACHE_REVALIDATE_FREQ",
  332. "displayName": "OPcache Revalidation Frequency",
  333. "description": "How often to check script timestamps for updates, in seconds. 0 will result in OPcache checking for updates on every request.",
  334. "value": "2"
  335. },
  336. {
  337. "name": "COMPOSER_MIRROR",
  338. "displayName": "Custom Composer Mirror URL",
  339. "description": "The custom Composer mirror URL",
  340. "value": ""
  341. }
  342. ]
  343. }