django-postgresql.json 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "django-psql-example",
  6. "annotations": {
  7. "openshift.io/display-name": "Django + PostgreSQL (Ephemeral)",
  8. "description": "An example Django application with a PostgreSQL database. For more information about using this template, including OpenShift considerations, see https://github.com/openshift/django-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,python,django",
  10. "iconClass": "icon-python",
  11. "template.openshift.io/long-description": "This template defines resources needed to develop a Django based 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. "template.openshift.io/provider-display-name": "Red Hat, Inc.",
  13. "template.openshift.io/documentation-url": "https://github.com/openshift/django-ex",
  14. "template.openshift.io/support-url": "https://access.redhat.com"
  15. }
  16. },
  17. "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/django-ex/blob/master/README.md.",
  18. "labels": {
  19. "template": "django-psql-example"
  20. },
  21. "objects": [
  22. {
  23. "kind": "Secret",
  24. "apiVersion": "v1",
  25. "metadata": {
  26. "name": "${NAME}"
  27. },
  28. "stringData" : {
  29. "database-user" : "${DATABASE_USER}",
  30. "database-password" : "${DATABASE_PASSWORD}",
  31. "django-secret-key" : "${DJANGO_SECRET_KEY}"
  32. }
  33. },
  34. {
  35. "kind": "Service",
  36. "apiVersion": "v1",
  37. "metadata": {
  38. "name": "${NAME}",
  39. "annotations": {
  40. "description": "Exposes and load balances the application pods",
  41. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${DATABASE_SERVICE_NAME}\", \"kind\": \"Service\"}]"
  42. }
  43. },
  44. "spec": {
  45. "ports": [
  46. {
  47. "name": "web",
  48. "port": 8080,
  49. "targetPort": 8080
  50. }
  51. ],
  52. "selector": {
  53. "name": "${NAME}"
  54. }
  55. }
  56. },
  57. {
  58. "kind": "Route",
  59. "apiVersion": "v1",
  60. "metadata": {
  61. "name": "${NAME}",
  62. "annotations": {
  63. "template.openshift.io/expose-uri": "http://{.spec.host}{.spec.path}"
  64. }
  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. }
  92. },
  93. "spec": {
  94. "source": {
  95. "type": "Git",
  96. "git": {
  97. "uri": "${SOURCE_REPOSITORY_URL}",
  98. "ref": "${SOURCE_REPOSITORY_REF}"
  99. },
  100. "contextDir": "${CONTEXT_DIR}"
  101. },
  102. "strategy": {
  103. "type": "Source",
  104. "sourceStrategy": {
  105. "from": {
  106. "kind": "ImageStreamTag",
  107. "namespace": "${NAMESPACE}",
  108. "name": "python:3.5"
  109. },
  110. "env": [
  111. {
  112. "name": "PIP_INDEX_URL",
  113. "value": "${PIP_INDEX_URL}"
  114. }
  115. ]
  116. }
  117. },
  118. "output": {
  119. "to": {
  120. "kind": "ImageStreamTag",
  121. "name": "${NAME}:latest"
  122. }
  123. },
  124. "triggers": [
  125. {
  126. "type": "ImageChange"
  127. },
  128. {
  129. "type": "ConfigChange"
  130. },
  131. {
  132. "type": "GitHub",
  133. "github": {
  134. "secret": "${GITHUB_WEBHOOK_SECRET}"
  135. }
  136. }
  137. ],
  138. "postCommit": {
  139. "script": "./manage.py test"
  140. }
  141. }
  142. },
  143. {
  144. "kind": "DeploymentConfig",
  145. "apiVersion": "v1",
  146. "metadata": {
  147. "name": "${NAME}",
  148. "annotations": {
  149. "description": "Defines how to deploy the application server"
  150. }
  151. },
  152. "spec": {
  153. "strategy": {
  154. "type": "Recreate"
  155. },
  156. "triggers": [
  157. {
  158. "type": "ImageChange",
  159. "imageChangeParams": {
  160. "automatic": true,
  161. "containerNames": [
  162. "django-psql-example"
  163. ],
  164. "from": {
  165. "kind": "ImageStreamTag",
  166. "name": "${NAME}:latest"
  167. }
  168. }
  169. },
  170. {
  171. "type": "ConfigChange"
  172. }
  173. ],
  174. "replicas": 1,
  175. "selector": {
  176. "name": "${NAME}"
  177. },
  178. "template": {
  179. "metadata": {
  180. "name": "${NAME}",
  181. "labels": {
  182. "name": "${NAME}"
  183. }
  184. },
  185. "spec": {
  186. "containers": [
  187. {
  188. "name": "django-psql-example",
  189. "image": " ",
  190. "ports": [
  191. {
  192. "containerPort": 8080
  193. }
  194. ],
  195. "readinessProbe": {
  196. "timeoutSeconds": 3,
  197. "initialDelaySeconds": 3,
  198. "httpGet": {
  199. "path": "/health",
  200. "port": 8080
  201. }
  202. },
  203. "livenessProbe": {
  204. "timeoutSeconds": 3,
  205. "initialDelaySeconds": 30,
  206. "httpGet": {
  207. "path": "/health",
  208. "port": 8080
  209. }
  210. },
  211. "env": [
  212. {
  213. "name": "DATABASE_SERVICE_NAME",
  214. "value": "${DATABASE_SERVICE_NAME}"
  215. },
  216. {
  217. "name": "DATABASE_ENGINE",
  218. "value": "${DATABASE_ENGINE}"
  219. },
  220. {
  221. "name": "DATABASE_NAME",
  222. "value": "${DATABASE_NAME}"
  223. },
  224. {
  225. "name": "DATABASE_USER",
  226. "valueFrom": {
  227. "secretKeyRef" : {
  228. "name" : "${NAME}",
  229. "key" : "database-user"
  230. }
  231. }
  232. },
  233. {
  234. "name": "DATABASE_PASSWORD",
  235. "valueFrom": {
  236. "secretKeyRef" : {
  237. "name" : "${NAME}",
  238. "key" : "database-password"
  239. }
  240. }
  241. },
  242. {
  243. "name": "APP_CONFIG",
  244. "value": "${APP_CONFIG}"
  245. },
  246. {
  247. "name": "DJANGO_SECRET_KEY",
  248. "valueFrom": {
  249. "secretKeyRef" : {
  250. "name" : "${NAME}",
  251. "key" : "django-secret-key"
  252. }
  253. }
  254. }
  255. ],
  256. "resources": {
  257. "limits": {
  258. "memory": "${MEMORY_LIMIT}"
  259. }
  260. }
  261. }
  262. ]
  263. }
  264. }
  265. }
  266. },
  267. {
  268. "kind": "Service",
  269. "apiVersion": "v1",
  270. "metadata": {
  271. "name": "${DATABASE_SERVICE_NAME}",
  272. "annotations": {
  273. "description": "Exposes the database server"
  274. }
  275. },
  276. "spec": {
  277. "ports": [
  278. {
  279. "name": "postgresql",
  280. "port": 5432,
  281. "targetPort": 5432
  282. }
  283. ],
  284. "selector": {
  285. "name": "${DATABASE_SERVICE_NAME}"
  286. }
  287. }
  288. },
  289. {
  290. "kind": "DeploymentConfig",
  291. "apiVersion": "v1",
  292. "metadata": {
  293. "name": "${DATABASE_SERVICE_NAME}",
  294. "annotations": {
  295. "description": "Defines how to deploy the database"
  296. }
  297. },
  298. "spec": {
  299. "strategy": {
  300. "type": "Recreate"
  301. },
  302. "triggers": [
  303. {
  304. "type": "ImageChange",
  305. "imageChangeParams": {
  306. "automatic": true,
  307. "containerNames": [
  308. "postgresql"
  309. ],
  310. "from": {
  311. "kind": "ImageStreamTag",
  312. "namespace": "${NAMESPACE}",
  313. "name": "postgresql:9.5"
  314. }
  315. }
  316. },
  317. {
  318. "type": "ConfigChange"
  319. }
  320. ],
  321. "replicas": 1,
  322. "selector": {
  323. "name": "${DATABASE_SERVICE_NAME}"
  324. },
  325. "template": {
  326. "metadata": {
  327. "name": "${DATABASE_SERVICE_NAME}",
  328. "labels": {
  329. "name": "${DATABASE_SERVICE_NAME}"
  330. }
  331. },
  332. "spec": {
  333. "volumes": [
  334. {
  335. "name": "data",
  336. "emptyDir": {}
  337. }
  338. ],
  339. "containers": [
  340. {
  341. "name": "postgresql",
  342. "image": " ",
  343. "ports": [
  344. {
  345. "containerPort": 5432
  346. }
  347. ],
  348. "env": [
  349. {
  350. "name": "POSTGRESQL_USER",
  351. "valueFrom": {
  352. "secretKeyRef" : {
  353. "name" : "${NAME}",
  354. "key" : "database-user"
  355. }
  356. }
  357. },
  358. {
  359. "name": "POSTGRESQL_PASSWORD",
  360. "valueFrom": {
  361. "secretKeyRef" : {
  362. "name" : "${NAME}",
  363. "key" : "database-password"
  364. }
  365. }
  366. },
  367. {
  368. "name": "POSTGRESQL_DATABASE",
  369. "value": "${DATABASE_NAME}"
  370. }
  371. ],
  372. "volumeMounts": [
  373. {
  374. "name": "data",
  375. "mountPath": "/var/lib/pgsql/data"
  376. }
  377. ],
  378. "readinessProbe": {
  379. "timeoutSeconds": 1,
  380. "initialDelaySeconds": 5,
  381. "exec": {
  382. "command": [ "/bin/sh", "-i", "-c", "psql -h 127.0.0.1 -U ${POSTGRESQL_USER} -q -d ${POSTGRESQL_DATABASE} -c 'SELECT 1'"]
  383. }
  384. },
  385. "livenessProbe": {
  386. "timeoutSeconds": 1,
  387. "initialDelaySeconds": 30,
  388. "tcpSocket": {
  389. "port": 5432
  390. }
  391. },
  392. "resources": {
  393. "limits": {
  394. "memory": "${MEMORY_POSTGRESQL_LIMIT}"
  395. }
  396. }
  397. }
  398. ]
  399. }
  400. }
  401. }
  402. }
  403. ],
  404. "parameters": [
  405. {
  406. "name": "NAME",
  407. "displayName": "Name",
  408. "description": "The name assigned to all of the frontend objects defined in this template.",
  409. "required": true,
  410. "value": "django-psql-example"
  411. },
  412. {
  413. "name": "NAMESPACE",
  414. "displayName": "Namespace",
  415. "required": true,
  416. "description": "The OpenShift Namespace where the ImageStream resides.",
  417. "value": "openshift"
  418. },
  419. {
  420. "name": "MEMORY_LIMIT",
  421. "displayName": "Memory Limit",
  422. "required": true,
  423. "description": "Maximum amount of memory the Django container can use.",
  424. "value": "512Mi"
  425. },
  426. {
  427. "name": "MEMORY_POSTGRESQL_LIMIT",
  428. "displayName": "Memory Limit (PostgreSQL)",
  429. "required": true,
  430. "description": "Maximum amount of memory the PostgreSQL container can use.",
  431. "value": "512Mi"
  432. },
  433. {
  434. "name": "SOURCE_REPOSITORY_URL",
  435. "displayName": "Git Repository URL",
  436. "required": true,
  437. "description": "The URL of the repository with your application source code.",
  438. "value": "https://github.com/openshift/django-ex.git"
  439. },
  440. {
  441. "name": "SOURCE_REPOSITORY_REF",
  442. "displayName": "Git Reference",
  443. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
  444. },
  445. {
  446. "name": "CONTEXT_DIR",
  447. "displayName": "Context Directory",
  448. "description": "Set this to the relative path to your project if it is not in the root of your repository."
  449. },
  450. {
  451. "name": "APPLICATION_DOMAIN",
  452. "displayName": "Application Hostname",
  453. "description": "The exposed hostname that will route to the Django service, if left blank a value will be defaulted.",
  454. "value": ""
  455. },
  456. {
  457. "name": "GITHUB_WEBHOOK_SECRET",
  458. "displayName": "GitHub Webhook Secret",
  459. "description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
  460. "generate": "expression",
  461. "from": "[a-zA-Z0-9]{40}"
  462. },
  463. {
  464. "name": "DATABASE_SERVICE_NAME",
  465. "displayName": "Database Service Name",
  466. "required": true,
  467. "value": "postgresql"
  468. },
  469. {
  470. "name": "DATABASE_ENGINE",
  471. "displayName": "Database Engine",
  472. "required": true,
  473. "description": "Database engine: postgresql, mysql or sqlite (default).",
  474. "value": "postgresql"
  475. },
  476. {
  477. "name": "DATABASE_NAME",
  478. "displayName": "Database Name",
  479. "required": true,
  480. "value": "default"
  481. },
  482. {
  483. "name": "DATABASE_USER",
  484. "displayName": "Database Username",
  485. "required": true,
  486. "value": "django"
  487. },
  488. {
  489. "name": "DATABASE_PASSWORD",
  490. "displayName": "Database User Password",
  491. "generate": "expression",
  492. "from": "[a-zA-Z0-9]{16}"
  493. },
  494. {
  495. "name": "APP_CONFIG",
  496. "displayName": "Application Configuration File Path",
  497. "description": "Relative path to Gunicorn configuration file (optional)."
  498. },
  499. {
  500. "name": "DJANGO_SECRET_KEY",
  501. "displayName": "Django Secret Key",
  502. "description": "Set this to a long random string.",
  503. "generate": "expression",
  504. "from": "[\\w]{50}"
  505. },
  506. {
  507. "name": "PIP_INDEX_URL",
  508. "displayName": "Custom PyPi Index URL",
  509. "description": "The custom PyPi index URL",
  510. "value": ""
  511. }
  512. ]
  513. }