django-postgresql.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "django-psql-example",
  6. "annotations": {
  7. "description": "An example Django application with a PostgreSQL database",
  8. "tags": "quickstart,python,django,postgresql",
  9. "iconClass": "icon-python"
  10. }
  11. },
  12. "labels": {
  13. "template": "django-psql-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-psql-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-psql-example",
  167. "image": " ",
  168. "ports": [
  169. {
  170. "containerPort": 8080
  171. }
  172. ],
  173. "readinessProbe": {
  174. "timeoutSeconds": 3,
  175. "initialDelaySeconds": 3,
  176. "httpGet": {
  177. "path": "/health",
  178. "port": 8080
  179. }
  180. },
  181. "livenessProbe": {
  182. "timeoutSeconds": 3,
  183. "initialDelaySeconds": 30,
  184. "httpGet": {
  185. "path": "/health",
  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. "kind": "Service",
  232. "apiVersion": "v1",
  233. "metadata": {
  234. "name": "${DATABASE_SERVICE_NAME}",
  235. "annotations": {
  236. "description": "Exposes the database server"
  237. }
  238. },
  239. "spec": {
  240. "ports": [
  241. {
  242. "name": "postgresql",
  243. "port": 5432,
  244. "targetPort": 5432
  245. }
  246. ],
  247. "selector": {
  248. "name": "${DATABASE_SERVICE_NAME}"
  249. }
  250. }
  251. },
  252. {
  253. "kind": "DeploymentConfig",
  254. "apiVersion": "v1",
  255. "metadata": {
  256. "name": "${DATABASE_SERVICE_NAME}",
  257. "annotations": {
  258. "description": "Defines how to deploy the database"
  259. }
  260. },
  261. "spec": {
  262. "strategy": {
  263. "type": "Recreate"
  264. },
  265. "triggers": [
  266. {
  267. "type": "ImageChange",
  268. "imageChangeParams": {
  269. "automatic": true,
  270. "containerNames": [
  271. "postgresql"
  272. ],
  273. "from": {
  274. "kind": "ImageStreamTag",
  275. "namespace": "${NAMESPACE}",
  276. "name": "postgresql:9.4"
  277. }
  278. }
  279. },
  280. {
  281. "type": "ConfigChange"
  282. }
  283. ],
  284. "replicas": 1,
  285. "selector": {
  286. "name": "${DATABASE_SERVICE_NAME}"
  287. },
  288. "template": {
  289. "metadata": {
  290. "name": "${DATABASE_SERVICE_NAME}",
  291. "labels": {
  292. "name": "${DATABASE_SERVICE_NAME}"
  293. }
  294. },
  295. "spec": {
  296. "volumes": [
  297. {
  298. "name": "data",
  299. "emptyDir": {}
  300. }
  301. ],
  302. "containers": [
  303. {
  304. "name": "postgresql",
  305. "image": " ",
  306. "ports": [
  307. {
  308. "containerPort": 5432
  309. }
  310. ],
  311. "env": [
  312. {
  313. "name": "POSTGRESQL_USER",
  314. "value": "${DATABASE_USER}"
  315. },
  316. {
  317. "name": "POSTGRESQL_PASSWORD",
  318. "value": "${DATABASE_PASSWORD}"
  319. },
  320. {
  321. "name": "POSTGRESQL_DATABASE",
  322. "value": "${DATABASE_NAME}"
  323. }
  324. ],
  325. "volumeMounts": [
  326. {
  327. "name": "data",
  328. "mountPath": "/var/lib/pgsql/data"
  329. }
  330. ],
  331. "readinessProbe": {
  332. "timeoutSeconds": 1,
  333. "initialDelaySeconds": 5,
  334. "exec": {
  335. "command": [ "/bin/sh", "-i", "-c", "psql -h 127.0.0.1 -U ${POSTGRESQL_USER} -q -d ${POSTGRESQL_DATABASE} -c 'SELECT 1'"]
  336. }
  337. },
  338. "livenessProbe": {
  339. "timeoutSeconds": 1,
  340. "initialDelaySeconds": 30,
  341. "tcpSocket": {
  342. "port": 5432
  343. }
  344. },
  345. "resources": {
  346. "limits": {
  347. "memory": "${MEMORY_POSTGRESQL_LIMIT}"
  348. }
  349. }
  350. }
  351. ]
  352. }
  353. }
  354. }
  355. }
  356. ],
  357. "parameters": [
  358. {
  359. "name": "NAME",
  360. "displayName": "Name",
  361. "description": "The name assigned to all of the frontend objects defined in this template.",
  362. "required": true,
  363. "value": "django-psql-example"
  364. },
  365. {
  366. "name": "NAMESPACE",
  367. "displayName": "Namespace",
  368. "required": true,
  369. "description": "The OpenShift Namespace where the ImageStream resides.",
  370. "value": "openshift"
  371. },
  372. {
  373. "name": "MEMORY_LIMIT",
  374. "displayName": "Memory Limit",
  375. "required": true,
  376. "description": "Maximum amount of memory the Django container can use.",
  377. "value": "512Mi"
  378. },
  379. {
  380. "name": "MEMORY_POSTGRESQL_LIMIT",
  381. "displayName": "Memory Limit (PostgreSQL)",
  382. "required": true,
  383. "description": "Maximum amount of memory the PostgreSQL container can use.",
  384. "value": "512Mi"
  385. },
  386. {
  387. "name": "SOURCE_REPOSITORY_URL",
  388. "displayName": "Git Repository URL",
  389. "required": true,
  390. "description": "The URL of the repository with your application source code.",
  391. "value": "https://github.com/openshift/django-ex.git"
  392. },
  393. {
  394. "name": "SOURCE_REPOSITORY_REF",
  395. "displayName": "Git Reference",
  396. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
  397. },
  398. {
  399. "name": "CONTEXT_DIR",
  400. "displayName": "Context Directory",
  401. "description": "Set this to the relative path to your project if it is not in the root of your repository."
  402. },
  403. {
  404. "name": "APPLICATION_DOMAIN",
  405. "displayName": "Application Hostname",
  406. "description": "The exposed hostname that will route to the Django service, if left blank a value will be defaulted.",
  407. "value": ""
  408. },
  409. {
  410. "name": "GITHUB_WEBHOOK_SECRET",
  411. "displayName": "GitHub Webhook Secret",
  412. "description": "A secret string used to configure the GitHub webhook.",
  413. "generate": "expression",
  414. "from": "[a-zA-Z0-9]{40}"
  415. },
  416. {
  417. "name": "DATABASE_SERVICE_NAME",
  418. "displayName": "Database Service Name",
  419. "required": true,
  420. "value": "postgresql"
  421. },
  422. {
  423. "name": "DATABASE_ENGINE",
  424. "displayName": "Database Engine",
  425. "required": true,
  426. "description": "Database engine: postgresql, mysql or sqlite (default).",
  427. "value": "postgresql"
  428. },
  429. {
  430. "name": "DATABASE_NAME",
  431. "displayName": "Database Name",
  432. "required": true,
  433. "value": "default"
  434. },
  435. {
  436. "name": "DATABASE_USER",
  437. "displayName": "Database Username",
  438. "required": true,
  439. "value": "django"
  440. },
  441. {
  442. "name": "DATABASE_PASSWORD",
  443. "displayName": "Database User Password",
  444. "generate": "expression",
  445. "from": "[a-zA-Z0-9]{16}"
  446. },
  447. {
  448. "name": "APP_CONFIG",
  449. "displayName": "Application Configuration File Path",
  450. "description": "Relative path to Gunicorn configuration file (optional)."
  451. },
  452. {
  453. "name": "DJANGO_SECRET_KEY",
  454. "displayName": "Django Secret Key",
  455. "description": "Set this to a long random string.",
  456. "generate": "expression",
  457. "from": "[\\w]{50}"
  458. },
  459. {
  460. "name": "PIP_INDEX_URL",
  461. "displayName": "Custom PyPi Index URL",
  462. "description": "The custom PyPi index URL",
  463. "value": ""
  464. }
  465. ]
  466. }