django-postgresql.json 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. {
  2. "apiVersion": "v1",
  3. "kind": "Template",
  4. "labels": {
  5. "app": "django-psql-example",
  6. "template": "django-psql-example"
  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.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing.",
  12. "iconClass": "icon-python",
  13. "openshift.io/display-name": "Django + PostgreSQL (Ephemeral)",
  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. The database is stored in non-persistent storage, so this configuration should be used for experimental purposes only.",
  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-example"
  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-example",
  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-example"
  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": "Service",
  271. "metadata": {
  272. "annotations": {
  273. "description": "Exposes the database server"
  274. },
  275. "name": "${DATABASE_SERVICE_NAME}"
  276. },
  277. "spec": {
  278. "ports": [
  279. {
  280. "name": "postgresql",
  281. "port": 5432,
  282. "targetPort": 5432
  283. }
  284. ],
  285. "selector": {
  286. "name": "${DATABASE_SERVICE_NAME}"
  287. }
  288. }
  289. },
  290. {
  291. "apiVersion": "v1",
  292. "kind": "DeploymentConfig",
  293. "metadata": {
  294. "annotations": {
  295. "description": "Defines how to deploy the database",
  296. "template.alpha.openshift.io/wait-for-ready": "true"
  297. },
  298. "name": "${DATABASE_SERVICE_NAME}"
  299. },
  300. "spec": {
  301. "replicas": 1,
  302. "selector": {
  303. "name": "${DATABASE_SERVICE_NAME}"
  304. },
  305. "strategy": {
  306. "type": "Recreate"
  307. },
  308. "template": {
  309. "metadata": {
  310. "labels": {
  311. "name": "${DATABASE_SERVICE_NAME}"
  312. },
  313. "name": "${DATABASE_SERVICE_NAME}"
  314. },
  315. "spec": {
  316. "containers": [
  317. {
  318. "env": [
  319. {
  320. "name": "POSTGRESQL_USER",
  321. "valueFrom": {
  322. "secretKeyRef": {
  323. "key": "database-user",
  324. "name": "${NAME}"
  325. }
  326. }
  327. },
  328. {
  329. "name": "POSTGRESQL_PASSWORD",
  330. "valueFrom": {
  331. "secretKeyRef": {
  332. "key": "database-password",
  333. "name": "${NAME}"
  334. }
  335. }
  336. },
  337. {
  338. "name": "POSTGRESQL_DATABASE",
  339. "value": "${DATABASE_NAME}"
  340. }
  341. ],
  342. "image": " ",
  343. "livenessProbe": {
  344. "exec": {
  345. "command": [
  346. "/usr/libexec/check-container",
  347. "--live"
  348. ]
  349. },
  350. "initialDelaySeconds": 120,
  351. "timeoutSeconds": 10
  352. },
  353. "name": "postgresql",
  354. "ports": [
  355. {
  356. "containerPort": 5432
  357. }
  358. ],
  359. "readinessProbe": {
  360. "exec": {
  361. "command": [
  362. "/usr/libexec/check-container"
  363. ]
  364. },
  365. "initialDelaySeconds": 5,
  366. "timeoutSeconds": 1
  367. },
  368. "resources": {
  369. "limits": {
  370. "memory": "${MEMORY_POSTGRESQL_LIMIT}"
  371. }
  372. },
  373. "volumeMounts": [
  374. {
  375. "mountPath": "/var/lib/pgsql/data",
  376. "name": "data"
  377. }
  378. ]
  379. }
  380. ],
  381. "volumes": [
  382. {
  383. "emptyDir": {},
  384. "name": "data"
  385. }
  386. ]
  387. }
  388. },
  389. "triggers": [
  390. {
  391. "imageChangeParams": {
  392. "automatic": true,
  393. "containerNames": [
  394. "postgresql"
  395. ],
  396. "from": {
  397. "kind": "ImageStreamTag",
  398. "name": "postgresql:9.5",
  399. "namespace": "${NAMESPACE}"
  400. }
  401. },
  402. "type": "ImageChange"
  403. },
  404. {
  405. "type": "ConfigChange"
  406. }
  407. ]
  408. }
  409. }
  410. ],
  411. "parameters": [
  412. {
  413. "description": "The name assigned to all of the frontend objects defined in this template.",
  414. "displayName": "Name",
  415. "name": "NAME",
  416. "required": true,
  417. "value": "django-psql-example"
  418. },
  419. {
  420. "description": "The OpenShift Namespace where the ImageStream resides.",
  421. "displayName": "Namespace",
  422. "name": "NAMESPACE",
  423. "required": true,
  424. "value": "openshift"
  425. },
  426. {
  427. "description": "Maximum amount of memory the Django container can use.",
  428. "displayName": "Memory Limit",
  429. "name": "MEMORY_LIMIT",
  430. "required": true,
  431. "value": "512Mi"
  432. },
  433. {
  434. "description": "Maximum amount of memory the PostgreSQL container can use.",
  435. "displayName": "Memory Limit (PostgreSQL)",
  436. "name": "MEMORY_POSTGRESQL_LIMIT",
  437. "required": true,
  438. "value": "512Mi"
  439. },
  440. {
  441. "description": "The URL of the repository with your application source code.",
  442. "displayName": "Git Repository URL",
  443. "name": "SOURCE_REPOSITORY_URL",
  444. "required": true,
  445. "value": "https://github.com/openshift/django-ex.git"
  446. },
  447. {
  448. "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch.",
  449. "displayName": "Git Reference",
  450. "name": "SOURCE_REPOSITORY_REF"
  451. },
  452. {
  453. "description": "Set this to the relative path to your project if it is not in the root of your repository.",
  454. "displayName": "Context Directory",
  455. "name": "CONTEXT_DIR"
  456. },
  457. {
  458. "description": "The exposed hostname that will route to the Django service, if left blank a value will be defaulted.",
  459. "displayName": "Application Hostname",
  460. "name": "APPLICATION_DOMAIN",
  461. "value": ""
  462. },
  463. {
  464. "description": "Github trigger secret. A difficult to guess string encoded as part of the webhook URL. Not encrypted.",
  465. "displayName": "GitHub Webhook Secret",
  466. "from": "[a-zA-Z0-9]{40}",
  467. "generate": "expression",
  468. "name": "GITHUB_WEBHOOK_SECRET"
  469. },
  470. {
  471. "displayName": "Database Service Name",
  472. "name": "DATABASE_SERVICE_NAME",
  473. "required": true,
  474. "value": "postgresql"
  475. },
  476. {
  477. "description": "Database engine: postgresql, mysql or sqlite (default).",
  478. "displayName": "Database Engine",
  479. "name": "DATABASE_ENGINE",
  480. "required": true,
  481. "value": "postgresql"
  482. },
  483. {
  484. "displayName": "Database Name",
  485. "name": "DATABASE_NAME",
  486. "required": true,
  487. "value": "default"
  488. },
  489. {
  490. "displayName": "Database Username",
  491. "name": "DATABASE_USER",
  492. "required": true,
  493. "value": "django"
  494. },
  495. {
  496. "displayName": "Database User Password",
  497. "from": "[a-zA-Z0-9]{16}",
  498. "generate": "expression",
  499. "name": "DATABASE_PASSWORD"
  500. },
  501. {
  502. "description": "Relative path to Gunicorn configuration file (optional).",
  503. "displayName": "Application Configuration File Path",
  504. "name": "APP_CONFIG"
  505. },
  506. {
  507. "description": "Set this to a long random string.",
  508. "displayName": "Django Secret Key",
  509. "from": "[\\w]{50}",
  510. "generate": "expression",
  511. "name": "DJANGO_SECRET_KEY"
  512. },
  513. {
  514. "description": "The custom PyPi index URL",
  515. "displayName": "Custom PyPi Index URL",
  516. "name": "PIP_INDEX_URL",
  517. "value": ""
  518. }
  519. ]
  520. }