django.json 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "django-example",
  6. "annotations": {
  7. "description": "An example Django application with no database",
  8. "tags": "quickstart,python,django",
  9. "iconClass": "icon-python"
  10. }
  11. },
  12. "labels": {
  13. "template": "django-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": "python:3.4"
  87. },
  88. "env": [
  89. {
  90. "name": "PIP_INDEX_URL",
  91. "value": "${PIP_INDEX_URL}"
  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. "postCommit": {
  117. "script": "./manage.py test"
  118. }
  119. }
  120. },
  121. {
  122. "kind": "DeploymentConfig",
  123. "apiVersion": "v1",
  124. "metadata": {
  125. "name": "${NAME}",
  126. "annotations": {
  127. "description": "Defines how to deploy the application server"
  128. }
  129. },
  130. "spec": {
  131. "strategy": {
  132. "type": "Rolling"
  133. },
  134. "triggers": [
  135. {
  136. "type": "ImageChange",
  137. "imageChangeParams": {
  138. "automatic": true,
  139. "containerNames": [
  140. "django-example"
  141. ],
  142. "from": {
  143. "kind": "ImageStreamTag",
  144. "name": "${NAME}:latest"
  145. }
  146. }
  147. },
  148. {
  149. "type": "ConfigChange"
  150. }
  151. ],
  152. "replicas": 1,
  153. "selector": {
  154. "name": "${NAME}"
  155. },
  156. "template": {
  157. "metadata": {
  158. "name": "${NAME}",
  159. "labels": {
  160. "name": "${NAME}"
  161. }
  162. },
  163. "spec": {
  164. "containers": [
  165. {
  166. "name": "django-example",
  167. "image": " ",
  168. "ports": [
  169. {
  170. "containerPort": 8080
  171. }
  172. ],
  173. "readinessProbe": {
  174. "timeoutSeconds": 3,
  175. "initialDelaySeconds": 3,
  176. "httpGet": {
  177. "path": "/",
  178. "port": 8080
  179. }
  180. },
  181. "livenessProbe": {
  182. "timeoutSeconds": 3,
  183. "initialDelaySeconds": 30,
  184. "httpGet": {
  185. "path": "/",
  186. "port": 8080
  187. }
  188. },
  189. "env": [
  190. {
  191. "name": "DATABASE_SERVICE_NAME",
  192. "value": "${DATABASE_SERVICE_NAME}"
  193. },
  194. {
  195. "name": "DATABASE_ENGINE",
  196. "value": "${DATABASE_ENGINE}"
  197. },
  198. {
  199. "name": "DATABASE_NAME",
  200. "value": "${DATABASE_NAME}"
  201. },
  202. {
  203. "name": "DATABASE_USER",
  204. "value": "${DATABASE_USER}"
  205. },
  206. {
  207. "name": "DATABASE_PASSWORD",
  208. "value": "${DATABASE_PASSWORD}"
  209. },
  210. {
  211. "name": "APP_CONFIG",
  212. "value": "${APP_CONFIG}"
  213. },
  214. {
  215. "name": "DJANGO_SECRET_KEY",
  216. "value": "${DJANGO_SECRET_KEY}"
  217. }
  218. ],
  219. "resources": {
  220. "limits": {
  221. "memory": "${MEMORY_LIMIT}"
  222. }
  223. }
  224. }
  225. ]
  226. }
  227. }
  228. }
  229. }
  230. ],
  231. "parameters": [
  232. {
  233. "name": "NAME",
  234. "displayName": "Name",
  235. "description": "The name assigned to all of the frontend objects defined in this template.",
  236. "required": true,
  237. "value": "django-example"
  238. },
  239. {
  240. "name": "NAMESPACE",
  241. "displayName": "Namespace",
  242. "required": true,
  243. "description": "The OpenShift Namespace where the ImageStream resides.",
  244. "value": "openshift"
  245. },
  246. {
  247. "name": "MEMORY_LIMIT",
  248. "displayName": "Memory Limit",
  249. "required": true,
  250. "description": "Maximum amount of memory the container can use.",
  251. "value": "512Mi"
  252. },
  253. {
  254. "name": "SOURCE_REPOSITORY_URL",
  255. "displayName": "Git Repository URL",
  256. "required": true,
  257. "description": "The URL of the repository with your application source code.",
  258. "value": "https://github.com/openshift/django-ex.git"
  259. },
  260. {
  261. "name": "SOURCE_REPOSITORY_REF",
  262. "displayName": "Git Reference",
  263. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
  264. },
  265. {
  266. "name": "CONTEXT_DIR",
  267. "displayName": "Context Directory",
  268. "description": "Set this to the relative path to your project if it is not in the root of your repository."
  269. },
  270. {
  271. "name": "APPLICATION_DOMAIN",
  272. "displayName": "Application Hostname",
  273. "description": "The exposed hostname that will route to the Django service, if left blank a value will be defaulted.",
  274. "value": ""
  275. },
  276. {
  277. "name": "GITHUB_WEBHOOK_SECRET",
  278. "displayName": "GitHub Webhook Secret",
  279. "description": "A secret string used to configure the GitHub webhook.",
  280. "generate": "expression",
  281. "from": "[a-zA-Z0-9]{40}"
  282. },
  283. {
  284. "name": "DATABASE_SERVICE_NAME",
  285. "displayName": "Database Service Name"
  286. },
  287. {
  288. "name": "DATABASE_ENGINE",
  289. "displayName": "Database Engine",
  290. "description": "Database engine: postgresql, mysql or sqlite (default)."
  291. },
  292. {
  293. "name": "DATABASE_NAME",
  294. "displayName": "Database Name"
  295. },
  296. {
  297. "name": "DATABASE_USER",
  298. "displayName": "Database Username"
  299. },
  300. {
  301. "name": "DATABASE_PASSWORD",
  302. "displayName": "Database User Password"
  303. },
  304. {
  305. "name": "APP_CONFIG",
  306. "displayName": "Application Configuration File Path",
  307. "description": "Relative path to Gunicorn configuration file (optional)."
  308. },
  309. {
  310. "name": "DJANGO_SECRET_KEY",
  311. "displayName": "Django Secret Key",
  312. "description": "Set this to a long random string.",
  313. "generate": "expression",
  314. "from": "[\\w]{50}"
  315. },
  316. {
  317. "name": "PIP_INDEX_URL",
  318. "displayName": "Custom PyPi Index URL",
  319. "description": "The custom PyPi index URL",
  320. "value": ""
  321. }
  322. ]
  323. }