django-postgresql-persistent.json 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546
  1. {
  2. "apiVersion": "v1",
  3. "kind": "Template",
  4. "labels": {
  5. "app": "django-psql-persistent",
  6. "template": "django-psql-persistent"
  7. },
  8. "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.",
  9. "metadata": {
  10. "annotations": {
  11. "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.",
  12. "iconClass": "icon-python",
  13. "openshift.io/display-name": "Django + PostgreSQL",
  14. "openshift.io/documentation-url": "https://github.com/openshift/django-ex",
  15. "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.",
  16. "openshift.io/provider-display-name": "Red Hat, Inc.",
  17. "openshift.io/support-url": "https://access.redhat.com",
  18. "tags": "quickstart,python,django",
  19. "template.openshift.io/bindable": "false"
  20. },
  21. "name": "django-psql-persistent"
  22. },
  23. "objects": [
  24. {
  25. "apiVersion": "v1",
  26. "kind": "Secret",
  27. "metadata": {
  28. "name": "${NAME}"
  29. },
  30. "stringData": {
  31. "database-password": "${DATABASE_PASSWORD}",
  32. "database-user": "${DATABASE_USER}",
  33. "django-secret-key": "${DJANGO_SECRET_KEY}"
  34. }
  35. },
  36. {
  37. "apiVersion": "v1",
  38. "kind": "Service",
  39. "metadata": {
  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. "name": "${NAME}"
  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. "apiVersion": "v1",
  61. "kind": "Route",
  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. "apiVersion": "v1",
  75. "kind": "ImageStream",
  76. "metadata": {
  77. "annotations": {
  78. "description": "Keeps track of changes in the application image"
  79. },
  80. "name": "${NAME}"
  81. }
  82. },
  83. {
  84. "apiVersion": "v1",
  85. "kind": "BuildConfig",
  86. "metadata": {
  87. "annotations": {
  88. "description": "Defines how to build the application",
  89. "template.alpha.openshift.io/wait-for-ready": "true"
  90. },
  91. "name": "${NAME}"
  92. },
  93. "spec": {
  94. "output": {
  95. "to": {
  96. "kind": "ImageStreamTag",
  97. "name": "${NAME}:latest"
  98. }
  99. },
  100. "postCommit": {
  101. "script": "./manage.py test"
  102. },
  103. "source": {
  104. "contextDir": "${CONTEXT_DIR}",
  105. "git": {
  106. "ref": "${SOURCE_REPOSITORY_REF}",
  107. "uri": "${SOURCE_REPOSITORY_URL}"
  108. },
  109. "type": "Git"
  110. },
  111. "strategy": {
  112. "sourceStrategy": {
  113. "env": [
  114. {
  115. "name": "PIP_INDEX_URL",
  116. "value": "${PIP_INDEX_URL}"
  117. }
  118. ],
  119. "from": {
  120. "kind": "ImageStreamTag",
  121. "name": "python:3.5",
  122. "namespace": "${NAMESPACE}"
  123. }
  124. },
  125. "type": "Source"
  126. },
  127. "triggers": [
  128. {
  129. "type": "ImageChange"
  130. },
  131. {
  132. "type": "ConfigChange"
  133. },
  134. {
  135. "github": {
  136. "secret": "${GITHUB_WEBHOOK_SECRET}"
  137. },
  138. "type": "GitHub"
  139. }
  140. ]
  141. }
  142. },
  143. {
  144. "apiVersion": "v1",
  145. "kind": "DeploymentConfig",
  146. "metadata": {
  147. "annotations": {
  148. "description": "Defines how to deploy the application server",
  149. "template.alpha.openshift.io/wait-for-ready": "true"
  150. },
  151. "name": "${NAME}"
  152. },
  153. "spec": {
  154. "replicas": 1,
  155. "selector": {
  156. "name": "${NAME}"
  157. },
  158. "strategy": {
  159. "type": "Recreate"
  160. },
  161. "template": {
  162. "metadata": {
  163. "labels": {
  164. "name": "${NAME}"
  165. },
  166. "name": "${NAME}"
  167. },
  168. "spec": {
  169. "containers": [
  170. {
  171. "env": [
  172. {
  173. "name": "DATABASE_SERVICE_NAME",
  174. "value": "${DATABASE_SERVICE_NAME}"
  175. },
  176. {
  177. "name": "DATABASE_ENGINE",
  178. "value": "${DATABASE_ENGINE}"
  179. },
  180. {
  181. "name": "DATABASE_NAME",
  182. "value": "${DATABASE_NAME}"
  183. },
  184. {
  185. "name": "DATABASE_USER",
  186. "valueFrom": {
  187. "secretKeyRef": {
  188. "key": "database-user",
  189. "name": "${NAME}"
  190. }
  191. }
  192. },
  193. {
  194. "name": "DATABASE_PASSWORD",
  195. "valueFrom": {
  196. "secretKeyRef": {
  197. "key": "database-password",
  198. "name": "${NAME}"
  199. }
  200. }
  201. },
  202. {
  203. "name": "APP_CONFIG",
  204. "value": "${APP_CONFIG}"
  205. },
  206. {
  207. "name": "DJANGO_SECRET_KEY",
  208. "valueFrom": {
  209. "secretKeyRef": {
  210. "key": "django-secret-key",
  211. "name": "${NAME}"
  212. }
  213. }
  214. }
  215. ],
  216. "image": " ",
  217. "livenessProbe": {
  218. "httpGet": {
  219. "path": "/health",
  220. "port": 8080
  221. },
  222. "initialDelaySeconds": 30,
  223. "timeoutSeconds": 3
  224. },
  225. "name": "django-psql-persistent",
  226. "ports": [
  227. {
  228. "containerPort": 8080
  229. }
  230. ],
  231. "readinessProbe": {
  232. "httpGet": {
  233. "path": "/health",
  234. "port": 8080
  235. },
  236. "initialDelaySeconds": 3,
  237. "timeoutSeconds": 3
  238. },
  239. "resources": {
  240. "limits": {
  241. "memory": "${MEMORY_LIMIT}"
  242. }
  243. }
  244. }
  245. ]
  246. }
  247. },
  248. "triggers": [
  249. {
  250. "imageChangeParams": {
  251. "automatic": true,
  252. "containerNames": [
  253. "django-psql-persistent"
  254. ],
  255. "from": {
  256. "kind": "ImageStreamTag",
  257. "name": "${NAME}:latest"
  258. }
  259. },
  260. "type": "ImageChange"
  261. },
  262. {
  263. "type": "ConfigChange"
  264. }
  265. ]
  266. }
  267. },
  268. {
  269. "apiVersion": "v1",
  270. "kind": "PersistentVolumeClaim",
  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. "apiVersion": "v1",
  287. "kind": "Service",
  288. "metadata": {
  289. "annotations": {
  290. "description": "Exposes the database server"
  291. },
  292. "name": "${DATABASE_SERVICE_NAME}"
  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. "apiVersion": "v1",
  309. "kind": "DeploymentConfig",
  310. "metadata": {
  311. "annotations": {
  312. "description": "Defines how to deploy the database",
  313. "template.alpha.openshift.io/wait-for-ready": "true"
  314. },
  315. "name": "${DATABASE_SERVICE_NAME}"
  316. },
  317. "spec": {
  318. "replicas": 1,
  319. "selector": {
  320. "name": "${DATABASE_SERVICE_NAME}"
  321. },
  322. "strategy": {
  323. "type": "Recreate"
  324. },
  325. "template": {
  326. "metadata": {
  327. "labels": {
  328. "name": "${DATABASE_SERVICE_NAME}"
  329. },
  330. "name": "${DATABASE_SERVICE_NAME}"
  331. },
  332. "spec": {
  333. "containers": [
  334. {
  335. "env": [
  336. {
  337. "name": "POSTGRESQL_USER",
  338. "valueFrom": {
  339. "secretKeyRef": {
  340. "key": "database-user",
  341. "name": "${NAME}"
  342. }
  343. }
  344. },
  345. {
  346. "name": "POSTGRESQL_PASSWORD",
  347. "valueFrom": {
  348. "secretKeyRef": {
  349. "key": "database-password",
  350. "name": "${NAME}"
  351. }
  352. }
  353. },
  354. {
  355. "name": "POSTGRESQL_DATABASE",
  356. "value": "${DATABASE_NAME}"
  357. }
  358. ],
  359. "image": " ",
  360. "livenessProbe": {
  361. "exec": {
  362. "command": [
  363. "/usr/libexec/check-container",
  364. "--live"
  365. ]
  366. },
  367. "initialDelaySeconds": 120,
  368. "timeoutSeconds": 10
  369. },
  370. "name": "postgresql",
  371. "ports": [
  372. {
  373. "containerPort": 5432
  374. }
  375. ],
  376. "readinessProbe": {
  377. "exec": {
  378. "command": [
  379. "/usr/libexec/check-container"
  380. ]
  381. },
  382. "initialDelaySeconds": 5,
  383. "timeoutSeconds": 1
  384. },
  385. "resources": {
  386. "limits": {
  387. "memory": "${MEMORY_POSTGRESQL_LIMIT}"
  388. }
  389. },
  390. "volumeMounts": [
  391. {
  392. "mountPath": "/var/lib/pgsql/data",
  393. "name": "${DATABASE_SERVICE_NAME}-data"
  394. }
  395. ]
  396. }
  397. ],
  398. "volumes": [
  399. {
  400. "name": "${DATABASE_SERVICE_NAME}-data",
  401. "persistentVolumeClaim": {
  402. "claimName": "${DATABASE_SERVICE_NAME}"
  403. }
  404. }
  405. ]
  406. }
  407. },
  408. "triggers": [
  409. {
  410. "imageChangeParams": {
  411. "automatic": true,
  412. "containerNames": [
  413. "postgresql"
  414. ],
  415. "from": {
  416. "kind": "ImageStreamTag",
  417. "name": "postgresql:9.5",
  418. "namespace": "${NAMESPACE}"
  419. }
  420. },
  421. "type": "ImageChange"
  422. },
  423. {
  424. "type": "ConfigChange"
  425. }
  426. ]
  427. }
  428. }
  429. ],
  430. "parameters": [
  431. {
  432. "description": "The name assigned to all of the frontend objects defined in this template.",
  433. "displayName": "Name",
  434. "name": "NAME",
  435. "required": true,
  436. "value": "django-psql-persistent"
  437. },
  438. {
  439. "description": "The OpenShift Namespace where the ImageStream resides.",
  440. "displayName": "Namespace",
  441. "name": "NAMESPACE",
  442. "required": true,
  443. "value": "openshift"
  444. },
  445. {
  446. "description": "Maximum amount of memory the Django container can use.",
  447. "displayName": "Memory Limit",
  448. "name": "MEMORY_LIMIT",
  449. "required": true,
  450. "value": "512Mi"
  451. },
  452. {
  453. "description": "Maximum amount of memory the PostgreSQL container can use.",
  454. "displayName": "Memory Limit (PostgreSQL)",
  455. "name": "MEMORY_POSTGRESQL_LIMIT",
  456. "required": true,
  457. "value": "512Mi"
  458. },
  459. {
  460. "description": "Volume space available for data, e.g. 512Mi, 2Gi",
  461. "displayName": "Volume Capacity",
  462. "name": "VOLUME_CAPACITY",
  463. "required": true,
  464. "value": "1Gi"
  465. },
  466. {
  467. "description": "The URL of the repository with your application source code.",
  468. "displayName": "Git Repository URL",
  469. "name": "SOURCE_REPOSITORY_URL",
  470. "required": true,
  471. "value": "https://github.com/openshift/django-ex.git"
  472. },
  473. {
  474. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.",
  475. "displayName": "Git Reference",
  476. "name": "SOURCE_REPOSITORY_REF"
  477. },
  478. {
  479. "description": "Set this to the relative path to your project if it is not in the root of your repository.",
  480. "displayName": "Context Directory",
  481. "name": "CONTEXT_DIR"
  482. },
  483. {
  484. "description": "The exposed hostname that will route to the Django service, if left blank a value will be defaulted.",
  485. "displayName": "Application Hostname",
  486. "name": "APPLICATION_DOMAIN",
  487. "value": ""
  488. },
  489. {
  490. "description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
  491. "displayName": "GitHub Webhook Secret",
  492. "from": "[a-zA-Z0-9]{40}",
  493. "generate": "expression",
  494. "name": "GITHUB_WEBHOOK_SECRET"
  495. },
  496. {
  497. "displayName": "Database Service Name",
  498. "name": "DATABASE_SERVICE_NAME",
  499. "required": true,
  500. "value": "postgresql"
  501. },
  502. {
  503. "description": "Database engine: postgresql, mysql or sqlite (default).",
  504. "displayName": "Database Engine",
  505. "name": "DATABASE_ENGINE",
  506. "required": true,
  507. "value": "postgresql"
  508. },
  509. {
  510. "displayName": "Database Name",
  511. "name": "DATABASE_NAME",
  512. "required": true,
  513. "value": "default"
  514. },
  515. {
  516. "displayName": "Database Username",
  517. "name": "DATABASE_USER",
  518. "required": true,
  519. "value": "django"
  520. },
  521. {
  522. "displayName": "Database User Password",
  523. "from": "[a-zA-Z0-9]{16}",
  524. "generate": "expression",
  525. "name": "DATABASE_PASSWORD"
  526. },
  527. {
  528. "description": "Relative path to Gunicorn configuration file (optional).",
  529. "displayName": "Application Configuration File Path",
  530. "name": "APP_CONFIG"
  531. },
  532. {
  533. "description": "Set this to a long random string.",
  534. "displayName": "Django Secret Key",
  535. "from": "[\\w]{50}",
  536. "generate": "expression",
  537. "name": "DJANGO_SECRET_KEY"
  538. },
  539. {
  540. "description": "The custom PyPi index URL",
  541. "displayName": "Custom PyPi Index URL",
  542. "name": "PIP_INDEX_URL",
  543. "value": ""
  544. }
  545. ]
  546. }