django-postgresql-persistent.json 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "django-psql-persistent",
  6. "annotations": {
  7. "openshift.io/display-name": "Django + PostgreSQL (Persistent)",
  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.",
  9. "tags": "quickstart,python,django",
  10. "iconClass": "icon-python",
  11. "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.",
  12. "openshift.io/provider-display-name": "Red Hat, Inc.",
  13. "openshift.io/documentation-url": "https://github.com/openshift/django-ex",
  14. "openshift.io/support-url": "https://access.redhat.com",
  15. "template.openshift.io/bindable": "false"
  16. }
  17. },
  18. "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.",
  19. "labels": {
  20. "template": "django-psql-persistent"
  21. },
  22. "objects": [
  23. {
  24. "kind": "Secret",
  25. "apiVersion": "v1",
  26. "metadata": {
  27. "name": "${NAME}"
  28. },
  29. "stringData" : {
  30. "database-user" : "${DATABASE_USER}",
  31. "database-password" : "${DATABASE_PASSWORD}",
  32. "django-secret-key" : "${DJANGO_SECRET_KEY}"
  33. }
  34. },
  35. {
  36. "kind": "Service",
  37. "apiVersion": "v1",
  38. "metadata": {
  39. "name": "${NAME}",
  40. "annotations": {
  41. "description": "Exposes and load balances the application pods",
  42. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${DATABASE_SERVICE_NAME}\", \"kind\": \"Service\"}]"
  43. }
  44. },
  45. "spec": {
  46. "ports": [
  47. {
  48. "name": "web",
  49. "port": 8080,
  50. "targetPort": 8080
  51. }
  52. ],
  53. "selector": {
  54. "name": "${NAME}"
  55. }
  56. }
  57. },
  58. {
  59. "kind": "Route",
  60. "apiVersion": "v1",
  61. "metadata": {
  62. "name": "${NAME}"
  63. },
  64. "spec": {
  65. "host": "${APPLICATION_DOMAIN}",
  66. "to": {
  67. "kind": "Service",
  68. "name": "${NAME}"
  69. }
  70. }
  71. },
  72. {
  73. "kind": "ImageStream",
  74. "apiVersion": "v1",
  75. "metadata": {
  76. "name": "${NAME}",
  77. "annotations": {
  78. "description": "Keeps track of changes in the application image"
  79. }
  80. }
  81. },
  82. {
  83. "kind": "BuildConfig",
  84. "apiVersion": "v1",
  85. "metadata": {
  86. "name": "${NAME}",
  87. "annotations": {
  88. "description": "Defines how to build the application",
  89. "template.alpha.openshift.io/wait-for-ready": "true"
  90. }
  91. },
  92. "spec": {
  93. "source": {
  94. "type": "Git",
  95. "git": {
  96. "uri": "${SOURCE_REPOSITORY_URL}",
  97. "ref": "${SOURCE_REPOSITORY_REF}"
  98. },
  99. "contextDir": "${CONTEXT_DIR}"
  100. },
  101. "strategy": {
  102. "type": "Source",
  103. "sourceStrategy": {
  104. "from": {
  105. "kind": "ImageStreamTag",
  106. "namespace": "${NAMESPACE}",
  107. "name": "python:3.5"
  108. },
  109. "env": [
  110. {
  111. "name": "PIP_INDEX_URL",
  112. "value": "${PIP_INDEX_URL}"
  113. }
  114. ]
  115. }
  116. },
  117. "output": {
  118. "to": {
  119. "kind": "ImageStreamTag",
  120. "name": "${NAME}:latest"
  121. }
  122. },
  123. "triggers": [
  124. {
  125. "type": "ImageChange"
  126. },
  127. {
  128. "type": "ConfigChange"
  129. },
  130. {
  131. "type": "GitHub",
  132. "github": {
  133. "secret": "${GITHUB_WEBHOOK_SECRET}"
  134. }
  135. }
  136. ],
  137. "postCommit": {
  138. "script": "./manage.py test"
  139. }
  140. }
  141. },
  142. {
  143. "kind": "DeploymentConfig",
  144. "apiVersion": "v1",
  145. "metadata": {
  146. "name": "${NAME}",
  147. "annotations": {
  148. "description": "Defines how to deploy the application server",
  149. "template.alpha.openshift.io/wait-for-ready": "true"
  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-persistent"
  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-persistent",
  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": "PersistentVolumeClaim",
  269. "apiVersion": "v1",
  270. "metadata": {
  271. "name": "${DATABASE_SERVICE_NAME}"
  272. },
  273. "spec": {
  274. "accessModes": [
  275. "ReadWriteOnce"
  276. ],
  277. "resources": {
  278. "requests": {
  279. "storage": "${VOLUME_CAPACITY}"
  280. }
  281. }
  282. }
  283. },
  284. {
  285. "kind": "Service",
  286. "apiVersion": "v1",
  287. "metadata": {
  288. "name": "${DATABASE_SERVICE_NAME}",
  289. "annotations": {
  290. "description": "Exposes the database server"
  291. }
  292. },
  293. "spec": {
  294. "ports": [
  295. {
  296. "name": "postgresql",
  297. "port": 5432,
  298. "targetPort": 5432
  299. }
  300. ],
  301. "selector": {
  302. "name": "${DATABASE_SERVICE_NAME}"
  303. }
  304. }
  305. },
  306. {
  307. "kind": "DeploymentConfig",
  308. "apiVersion": "v1",
  309. "metadata": {
  310. "name": "${DATABASE_SERVICE_NAME}",
  311. "annotations": {
  312. "description": "Defines how to deploy the database",
  313. "template.alpha.openshift.io/wait-for-ready": "true"
  314. }
  315. },
  316. "spec": {
  317. "strategy": {
  318. "type": "Recreate"
  319. },
  320. "triggers": [
  321. {
  322. "type": "ImageChange",
  323. "imageChangeParams": {
  324. "automatic": true,
  325. "containerNames": [
  326. "postgresql"
  327. ],
  328. "from": {
  329. "kind": "ImageStreamTag",
  330. "namespace": "${NAMESPACE}",
  331. "name": "postgresql:9.5"
  332. }
  333. }
  334. },
  335. {
  336. "type": "ConfigChange"
  337. }
  338. ],
  339. "replicas": 1,
  340. "selector": {
  341. "name": "${DATABASE_SERVICE_NAME}"
  342. },
  343. "template": {
  344. "metadata": {
  345. "name": "${DATABASE_SERVICE_NAME}",
  346. "labels": {
  347. "name": "${DATABASE_SERVICE_NAME}"
  348. }
  349. },
  350. "spec": {
  351. "volumes": [
  352. {
  353. "name": "${DATABASE_SERVICE_NAME}-data",
  354. "persistentVolumeClaim": {
  355. "claimName": "${DATABASE_SERVICE_NAME}"
  356. }
  357. }
  358. ],
  359. "containers": [
  360. {
  361. "name": "postgresql",
  362. "image": " ",
  363. "ports": [
  364. {
  365. "containerPort": 5432
  366. }
  367. ],
  368. "env": [
  369. {
  370. "name": "POSTGRESQL_USER",
  371. "valueFrom": {
  372. "secretKeyRef" : {
  373. "name" : "${NAME}",
  374. "key" : "database-user"
  375. }
  376. }
  377. },
  378. {
  379. "name": "POSTGRESQL_PASSWORD",
  380. "valueFrom": {
  381. "secretKeyRef" : {
  382. "name" : "${NAME}",
  383. "key" : "database-password"
  384. }
  385. }
  386. },
  387. {
  388. "name": "POSTGRESQL_DATABASE",
  389. "value": "${DATABASE_NAME}"
  390. }
  391. ],
  392. "volumeMounts": [
  393. {
  394. "name": "${DATABASE_SERVICE_NAME}-data",
  395. "mountPath": "/var/lib/pgsql/data"
  396. }
  397. ],
  398. "readinessProbe": {
  399. "timeoutSeconds": 1,
  400. "initialDelaySeconds": 5,
  401. "exec": {
  402. "command": [ "/bin/sh", "-i", "-c", "psql -h 127.0.0.1 -U ${POSTGRESQL_USER} -q -d ${POSTGRESQL_DATABASE} -c 'SELECT 1'"]
  403. }
  404. },
  405. "livenessProbe": {
  406. "timeoutSeconds": 1,
  407. "initialDelaySeconds": 30,
  408. "tcpSocket": {
  409. "port": 5432
  410. }
  411. },
  412. "resources": {
  413. "limits": {
  414. "memory": "${MEMORY_POSTGRESQL_LIMIT}"
  415. }
  416. }
  417. }
  418. ]
  419. }
  420. }
  421. }
  422. }
  423. ],
  424. "parameters": [
  425. {
  426. "name": "NAME",
  427. "displayName": "Name",
  428. "description": "The name assigned to all of the frontend objects defined in this template.",
  429. "required": true,
  430. "value": "django-psql-persistent"
  431. },
  432. {
  433. "name": "NAMESPACE",
  434. "displayName": "Namespace",
  435. "required": true,
  436. "description": "The OpenShift Namespace where the ImageStream resides.",
  437. "value": "openshift"
  438. },
  439. {
  440. "name": "MEMORY_LIMIT",
  441. "displayName": "Memory Limit",
  442. "required": true,
  443. "description": "Maximum amount of memory the Django container can use.",
  444. "value": "512Mi"
  445. },
  446. {
  447. "name": "MEMORY_POSTGRESQL_LIMIT",
  448. "displayName": "Memory Limit (PostgreSQL)",
  449. "required": true,
  450. "description": "Maximum amount of memory the PostgreSQL container can use.",
  451. "value": "512Mi"
  452. },
  453. {
  454. "name": "VOLUME_CAPACITY",
  455. "displayName": "Volume Capacity",
  456. "description": "Volume space available for data, e.g. 512Mi, 2Gi",
  457. "value": "1Gi",
  458. "required": true
  459. },
  460. {
  461. "name": "SOURCE_REPOSITORY_URL",
  462. "displayName": "Git Repository URL",
  463. "required": true,
  464. "description": "The URL of the repository with your application source code.",
  465. "value": "https://github.com/openshift/django-ex.git"
  466. },
  467. {
  468. "name": "SOURCE_REPOSITORY_REF",
  469. "displayName": "Git Reference",
  470. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
  471. },
  472. {
  473. "name": "CONTEXT_DIR",
  474. "displayName": "Context Directory",
  475. "description": "Set this to the relative path to your project if it is not in the root of your repository."
  476. },
  477. {
  478. "name": "APPLICATION_DOMAIN",
  479. "displayName": "Application Hostname",
  480. "description": "The exposed hostname that will route to the Django service, if left blank a value will be defaulted.",
  481. "value": ""
  482. },
  483. {
  484. "name": "GITHUB_WEBHOOK_SECRET",
  485. "displayName": "GitHub Webhook Secret",
  486. "description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
  487. "generate": "expression",
  488. "from": "[a-zA-Z0-9]{40}"
  489. },
  490. {
  491. "name": "DATABASE_SERVICE_NAME",
  492. "displayName": "Database Service Name",
  493. "required": true,
  494. "value": "postgresql"
  495. },
  496. {
  497. "name": "DATABASE_ENGINE",
  498. "displayName": "Database Engine",
  499. "required": true,
  500. "description": "Database engine: postgresql, mysql or sqlite (default).",
  501. "value": "postgresql"
  502. },
  503. {
  504. "name": "DATABASE_NAME",
  505. "displayName": "Database Name",
  506. "required": true,
  507. "value": "default"
  508. },
  509. {
  510. "name": "DATABASE_USER",
  511. "displayName": "Database Username",
  512. "required": true,
  513. "value": "django"
  514. },
  515. {
  516. "name": "DATABASE_PASSWORD",
  517. "displayName": "Database User Password",
  518. "generate": "expression",
  519. "from": "[a-zA-Z0-9]{16}"
  520. },
  521. {
  522. "name": "APP_CONFIG",
  523. "displayName": "Application Configuration File Path",
  524. "description": "Relative path to Gunicorn configuration file (optional)."
  525. },
  526. {
  527. "name": "DJANGO_SECRET_KEY",
  528. "displayName": "Django Secret Key",
  529. "description": "Set this to a long random string.",
  530. "generate": "expression",
  531. "from": "[\\w]{50}"
  532. },
  533. {
  534. "name": "PIP_INDEX_URL",
  535. "displayName": "Custom PyPi Index URL",
  536. "description": "The custom PyPi index URL",
  537. "value": ""
  538. }
  539. ]
  540. }