django-postgresql-persistent.json 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "django-psql-persistent",
  6. "annotations": {
  7. "openshift.io/display-name": "Django + PostgreSQL",
  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. "app": "django-psql-persistent"
  22. },
  23. "objects": [
  24. {
  25. "kind": "Secret",
  26. "apiVersion": "v1",
  27. "metadata": {
  28. "name": "${NAME}"
  29. },
  30. "stringData" : {
  31. "database-user" : "${DATABASE_USER}",
  32. "database-password" : "${DATABASE_PASSWORD}",
  33. "django-secret-key" : "${DJANGO_SECRET_KEY}"
  34. }
  35. },
  36. {
  37. "kind": "Service",
  38. "apiVersion": "v1",
  39. "metadata": {
  40. "name": "${NAME}",
  41. "annotations": {
  42. "description": "Exposes and load balances the application pods",
  43. "service.alpha.openshift.io/dependencies": "[{\"name\": \"${DATABASE_SERVICE_NAME}\", \"kind\": \"Service\"}]"
  44. }
  45. },
  46. "spec": {
  47. "ports": [
  48. {
  49. "name": "web",
  50. "port": 8080,
  51. "targetPort": 8080
  52. }
  53. ],
  54. "selector": {
  55. "name": "${NAME}"
  56. }
  57. }
  58. },
  59. {
  60. "kind": "Route",
  61. "apiVersion": "v1",
  62. "metadata": {
  63. "name": "${NAME}"
  64. },
  65. "spec": {
  66. "host": "${APPLICATION_DOMAIN}",
  67. "to": {
  68. "kind": "Service",
  69. "name": "${NAME}"
  70. }
  71. }
  72. },
  73. {
  74. "kind": "ImageStream",
  75. "apiVersion": "v1",
  76. "metadata": {
  77. "name": "${NAME}",
  78. "annotations": {
  79. "description": "Keeps track of changes in the application image"
  80. }
  81. }
  82. },
  83. {
  84. "kind": "BuildConfig",
  85. "apiVersion": "v1",
  86. "metadata": {
  87. "name": "${NAME}",
  88. "annotations": {
  89. "description": "Defines how to build the application",
  90. "template.alpha.openshift.io/wait-for-ready": "true"
  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. "template.alpha.openshift.io/wait-for-ready": "true"
  151. }
  152. },
  153. "spec": {
  154. "strategy": {
  155. "type": "Recreate"
  156. },
  157. "triggers": [
  158. {
  159. "type": "ImageChange",
  160. "imageChangeParams": {
  161. "automatic": true,
  162. "containerNames": [
  163. "django-psql-persistent"
  164. ],
  165. "from": {
  166. "kind": "ImageStreamTag",
  167. "name": "${NAME}:latest"
  168. }
  169. }
  170. },
  171. {
  172. "type": "ConfigChange"
  173. }
  174. ],
  175. "replicas": 1,
  176. "selector": {
  177. "name": "${NAME}"
  178. },
  179. "template": {
  180. "metadata": {
  181. "name": "${NAME}",
  182. "labels": {
  183. "name": "${NAME}"
  184. }
  185. },
  186. "spec": {
  187. "containers": [
  188. {
  189. "name": "django-psql-persistent",
  190. "image": " ",
  191. "ports": [
  192. {
  193. "containerPort": 8080
  194. }
  195. ],
  196. "readinessProbe": {
  197. "timeoutSeconds": 3,
  198. "initialDelaySeconds": 3,
  199. "httpGet": {
  200. "path": "/health",
  201. "port": 8080
  202. }
  203. },
  204. "livenessProbe": {
  205. "timeoutSeconds": 3,
  206. "initialDelaySeconds": 30,
  207. "httpGet": {
  208. "path": "/health",
  209. "port": 8080
  210. }
  211. },
  212. "env": [
  213. {
  214. "name": "DATABASE_SERVICE_NAME",
  215. "value": "${DATABASE_SERVICE_NAME}"
  216. },
  217. {
  218. "name": "DATABASE_ENGINE",
  219. "value": "${DATABASE_ENGINE}"
  220. },
  221. {
  222. "name": "DATABASE_NAME",
  223. "value": "${DATABASE_NAME}"
  224. },
  225. {
  226. "name": "DATABASE_USER",
  227. "valueFrom": {
  228. "secretKeyRef" : {
  229. "name" : "${NAME}",
  230. "key" : "database-user"
  231. }
  232. }
  233. },
  234. {
  235. "name": "DATABASE_PASSWORD",
  236. "valueFrom": {
  237. "secretKeyRef" : {
  238. "name" : "${NAME}",
  239. "key" : "database-password"
  240. }
  241. }
  242. },
  243. {
  244. "name": "APP_CONFIG",
  245. "value": "${APP_CONFIG}"
  246. },
  247. {
  248. "name": "DJANGO_SECRET_KEY",
  249. "valueFrom": {
  250. "secretKeyRef" : {
  251. "name" : "${NAME}",
  252. "key" : "django-secret-key"
  253. }
  254. }
  255. }
  256. ],
  257. "resources": {
  258. "limits": {
  259. "memory": "${MEMORY_LIMIT}"
  260. }
  261. }
  262. }
  263. ]
  264. }
  265. }
  266. }
  267. },
  268. {
  269. "kind": "PersistentVolumeClaim",
  270. "apiVersion": "v1",
  271. "metadata": {
  272. "name": "${DATABASE_SERVICE_NAME}"
  273. },
  274. "spec": {
  275. "accessModes": [
  276. "ReadWriteOnce"
  277. ],
  278. "resources": {
  279. "requests": {
  280. "storage": "${VOLUME_CAPACITY}"
  281. }
  282. }
  283. }
  284. },
  285. {
  286. "kind": "Service",
  287. "apiVersion": "v1",
  288. "metadata": {
  289. "name": "${DATABASE_SERVICE_NAME}",
  290. "annotations": {
  291. "description": "Exposes the database server"
  292. }
  293. },
  294. "spec": {
  295. "ports": [
  296. {
  297. "name": "postgresql",
  298. "port": 5432,
  299. "targetPort": 5432
  300. }
  301. ],
  302. "selector": {
  303. "name": "${DATABASE_SERVICE_NAME}"
  304. }
  305. }
  306. },
  307. {
  308. "kind": "DeploymentConfig",
  309. "apiVersion": "v1",
  310. "metadata": {
  311. "name": "${DATABASE_SERVICE_NAME}",
  312. "annotations": {
  313. "description": "Defines how to deploy the database",
  314. "template.alpha.openshift.io/wait-for-ready": "true"
  315. }
  316. },
  317. "spec": {
  318. "strategy": {
  319. "type": "Recreate"
  320. },
  321. "triggers": [
  322. {
  323. "type": "ImageChange",
  324. "imageChangeParams": {
  325. "automatic": true,
  326. "containerNames": [
  327. "postgresql"
  328. ],
  329. "from": {
  330. "kind": "ImageStreamTag",
  331. "namespace": "${NAMESPACE}",
  332. "name": "postgresql:9.5"
  333. }
  334. }
  335. },
  336. {
  337. "type": "ConfigChange"
  338. }
  339. ],
  340. "replicas": 1,
  341. "selector": {
  342. "name": "${DATABASE_SERVICE_NAME}"
  343. },
  344. "template": {
  345. "metadata": {
  346. "name": "${DATABASE_SERVICE_NAME}",
  347. "labels": {
  348. "name": "${DATABASE_SERVICE_NAME}"
  349. }
  350. },
  351. "spec": {
  352. "volumes": [
  353. {
  354. "name": "${DATABASE_SERVICE_NAME}-data",
  355. "persistentVolumeClaim": {
  356. "claimName": "${DATABASE_SERVICE_NAME}"
  357. }
  358. }
  359. ],
  360. "containers": [
  361. {
  362. "name": "postgresql",
  363. "image": " ",
  364. "ports": [
  365. {
  366. "containerPort": 5432
  367. }
  368. ],
  369. "env": [
  370. {
  371. "name": "POSTGRESQL_USER",
  372. "valueFrom": {
  373. "secretKeyRef" : {
  374. "name" : "${NAME}",
  375. "key" : "database-user"
  376. }
  377. }
  378. },
  379. {
  380. "name": "POSTGRESQL_PASSWORD",
  381. "valueFrom": {
  382. "secretKeyRef" : {
  383. "name" : "${NAME}",
  384. "key" : "database-password"
  385. }
  386. }
  387. },
  388. {
  389. "name": "POSTGRESQL_DATABASE",
  390. "value": "${DATABASE_NAME}"
  391. }
  392. ],
  393. "volumeMounts": [
  394. {
  395. "name": "${DATABASE_SERVICE_NAME}-data",
  396. "mountPath": "/var/lib/pgsql/data"
  397. }
  398. ],
  399. "readinessProbe": {
  400. "timeoutSeconds": 1,
  401. "initialDelaySeconds": 5,
  402. "exec": {
  403. "command": [ "/bin/sh", "-i", "-c", "psql -h 127.0.0.1 -U ${POSTGRESQL_USER} -q -d ${POSTGRESQL_DATABASE} -c 'SELECT 1'"]
  404. }
  405. },
  406. "livenessProbe": {
  407. "timeoutSeconds": 1,
  408. "initialDelaySeconds": 30,
  409. "tcpSocket": {
  410. "port": 5432
  411. }
  412. },
  413. "resources": {
  414. "limits": {
  415. "memory": "${MEMORY_POSTGRESQL_LIMIT}"
  416. }
  417. }
  418. }
  419. ]
  420. }
  421. }
  422. }
  423. }
  424. ],
  425. "parameters": [
  426. {
  427. "name": "NAME",
  428. "displayName": "Name",
  429. "description": "The name assigned to all of the frontend objects defined in this template.",
  430. "required": true,
  431. "value": "django-psql-persistent"
  432. },
  433. {
  434. "name": "NAMESPACE",
  435. "displayName": "Namespace",
  436. "required": true,
  437. "description": "The OpenShift Namespace where the ImageStream resides.",
  438. "value": "openshift"
  439. },
  440. {
  441. "name": "MEMORY_LIMIT",
  442. "displayName": "Memory Limit",
  443. "required": true,
  444. "description": "Maximum amount of memory the Django container can use.",
  445. "value": "512Mi"
  446. },
  447. {
  448. "name": "MEMORY_POSTGRESQL_LIMIT",
  449. "displayName": "Memory Limit (PostgreSQL)",
  450. "required": true,
  451. "description": "Maximum amount of memory the PostgreSQL container can use.",
  452. "value": "512Mi"
  453. },
  454. {
  455. "name": "VOLUME_CAPACITY",
  456. "displayName": "Volume Capacity",
  457. "description": "Volume space available for data, e.g. 512Mi, 2Gi",
  458. "value": "1Gi",
  459. "required": true
  460. },
  461. {
  462. "name": "SOURCE_REPOSITORY_URL",
  463. "displayName": "Git Repository URL",
  464. "required": true,
  465. "description": "The URL of the repository with your application source code.",
  466. "value": "https://github.com/openshift/django-ex.git"
  467. },
  468. {
  469. "name": "SOURCE_REPOSITORY_REF",
  470. "displayName": "Git Reference",
  471. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
  472. },
  473. {
  474. "name": "CONTEXT_DIR",
  475. "displayName": "Context Directory",
  476. "description": "Set this to the relative path to your project if it is not in the root of your repository."
  477. },
  478. {
  479. "name": "APPLICATION_DOMAIN",
  480. "displayName": "Application Hostname",
  481. "description": "The exposed hostname that will route to the Django service, if left blank a value will be defaulted.",
  482. "value": ""
  483. },
  484. {
  485. "name": "GITHUB_WEBHOOK_SECRET",
  486. "displayName": "GitHub Webhook Secret",
  487. "description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
  488. "generate": "expression",
  489. "from": "[a-zA-Z0-9]{40}"
  490. },
  491. {
  492. "name": "DATABASE_SERVICE_NAME",
  493. "displayName": "Database Service Name",
  494. "required": true,
  495. "value": "postgresql"
  496. },
  497. {
  498. "name": "DATABASE_ENGINE",
  499. "displayName": "Database Engine",
  500. "required": true,
  501. "description": "Database engine: postgresql, mysql or sqlite (default).",
  502. "value": "postgresql"
  503. },
  504. {
  505. "name": "DATABASE_NAME",
  506. "displayName": "Database Name",
  507. "required": true,
  508. "value": "default"
  509. },
  510. {
  511. "name": "DATABASE_USER",
  512. "displayName": "Database Username",
  513. "required": true,
  514. "value": "django"
  515. },
  516. {
  517. "name": "DATABASE_PASSWORD",
  518. "displayName": "Database User Password",
  519. "generate": "expression",
  520. "from": "[a-zA-Z0-9]{16}"
  521. },
  522. {
  523. "name": "APP_CONFIG",
  524. "displayName": "Application Configuration File Path",
  525. "description": "Relative path to Gunicorn configuration file (optional)."
  526. },
  527. {
  528. "name": "DJANGO_SECRET_KEY",
  529. "displayName": "Django Secret Key",
  530. "description": "Set this to a long random string.",
  531. "generate": "expression",
  532. "from": "[\\w]{50}"
  533. },
  534. {
  535. "name": "PIP_INDEX_URL",
  536. "displayName": "Custom PyPi Index URL",
  537. "description": "The custom PyPi index URL",
  538. "value": ""
  539. }
  540. ]
  541. }