postgresql-persistent-template.json 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "postgresql-persistent",
  6. "creationTimestamp": null,
  7. "annotations": {
  8. "description": "PostgreSQL database service, with persistent storage. Scaling to more than one replica is not supported. You must have persistent volumes available in your cluster to use this template.",
  9. "iconClass": "icon-postgresql",
  10. "tags": "database,postgresql"
  11. }
  12. },
  13. "objects": [
  14. {
  15. "kind": "Service",
  16. "apiVersion": "v1",
  17. "metadata": {
  18. "name": "${DATABASE_SERVICE_NAME}",
  19. "creationTimestamp": null
  20. },
  21. "spec": {
  22. "ports": [
  23. {
  24. "name": "postgresql",
  25. "protocol": "TCP",
  26. "port": 5432,
  27. "targetPort": 5432,
  28. "nodePort": 0
  29. }
  30. ],
  31. "selector": {
  32. "name": "${DATABASE_SERVICE_NAME}"
  33. },
  34. "type": "ClusterIP",
  35. "sessionAffinity": "None"
  36. },
  37. "status": {
  38. "loadBalancer": {}
  39. }
  40. },
  41. {
  42. "kind": "PersistentVolumeClaim",
  43. "apiVersion": "v1",
  44. "metadata": {
  45. "name": "${DATABASE_SERVICE_NAME}"
  46. },
  47. "spec": {
  48. "accessModes": [
  49. "ReadWriteOnce"
  50. ],
  51. "resources": {
  52. "requests": {
  53. "storage": "${VOLUME_CAPACITY}"
  54. }
  55. }
  56. }
  57. },
  58. {
  59. "kind": "DeploymentConfig",
  60. "apiVersion": "v1",
  61. "metadata": {
  62. "name": "${DATABASE_SERVICE_NAME}",
  63. "creationTimestamp": null
  64. },
  65. "spec": {
  66. "strategy": {
  67. "type": "Recreate"
  68. },
  69. "triggers": [
  70. {
  71. "type": "ImageChange",
  72. "imageChangeParams": {
  73. "automatic": true,
  74. "containerNames": [
  75. "postgresql"
  76. ],
  77. "from": {
  78. "kind": "ImageStreamTag",
  79. "name": "postgresql:${POSTGRESQL_VERSION}",
  80. "namespace": "${NAMESPACE}"
  81. },
  82. "lastTriggeredImage": ""
  83. }
  84. },
  85. {
  86. "type": "ConfigChange"
  87. }
  88. ],
  89. "replicas": 1,
  90. "selector": {
  91. "name": "${DATABASE_SERVICE_NAME}"
  92. },
  93. "template": {
  94. "metadata": {
  95. "creationTimestamp": null,
  96. "labels": {
  97. "name": "${DATABASE_SERVICE_NAME}"
  98. }
  99. },
  100. "spec": {
  101. "containers": [
  102. {
  103. "name": "postgresql",
  104. "image": " ",
  105. "ports": [
  106. {
  107. "containerPort": 5432,
  108. "protocol": "TCP"
  109. }
  110. ],
  111. "readinessProbe": {
  112. "timeoutSeconds": 1,
  113. "initialDelaySeconds": 5,
  114. "exec": {
  115. "command": [ "/bin/sh", "-i", "-c", "psql -h 127.0.0.1 -U $POSTGRESQL_USER -q -d $POSTGRESQL_DATABASE -c 'SELECT 1'"]
  116. }
  117. },
  118. "livenessProbe": {
  119. "timeoutSeconds": 1,
  120. "initialDelaySeconds": 30,
  121. "tcpSocket": {
  122. "port": 5432
  123. }
  124. },
  125. "env": [
  126. {
  127. "name": "POSTGRESQL_USER",
  128. "value": "${POSTGRESQL_USER}"
  129. },
  130. {
  131. "name": "POSTGRESQL_PASSWORD",
  132. "value": "${POSTGRESQL_PASSWORD}"
  133. },
  134. {
  135. "name": "POSTGRESQL_DATABASE",
  136. "value": "${POSTGRESQL_DATABASE}"
  137. }
  138. ],
  139. "resources": {
  140. "limits": {
  141. "memory": "${MEMORY_LIMIT}"
  142. }
  143. },
  144. "volumeMounts": [
  145. {
  146. "name": "${DATABASE_SERVICE_NAME}-data",
  147. "mountPath": "/var/lib/pgsql/data"
  148. }
  149. ],
  150. "terminationMessagePath": "/dev/termination-log",
  151. "imagePullPolicy": "IfNotPresent",
  152. "capabilities": {},
  153. "securityContext": {
  154. "capabilities": {},
  155. "privileged": false
  156. }
  157. }
  158. ],
  159. "volumes": [
  160. {
  161. "name": "${DATABASE_SERVICE_NAME}-data",
  162. "persistentVolumeClaim": {
  163. "claimName": "${DATABASE_SERVICE_NAME}"
  164. }
  165. }
  166. ],
  167. "restartPolicy": "Always",
  168. "dnsPolicy": "ClusterFirst"
  169. }
  170. }
  171. },
  172. "status": {}
  173. }
  174. ],
  175. "parameters": [
  176. {
  177. "name": "MEMORY_LIMIT",
  178. "displayName": "Memory Limit",
  179. "description": "Maximum amount of memory the container can use.",
  180. "value": "512Mi"
  181. },
  182. {
  183. "name": "NAMESPACE",
  184. "displayName": "Namespace",
  185. "description": "The OpenShift Namespace where the ImageStream resides.",
  186. "value": "openshift"
  187. },
  188. {
  189. "name": "DATABASE_SERVICE_NAME",
  190. "displayName": "Database Service Name",
  191. "description": "The name of the OpenShift Service exposed for the database.",
  192. "value": "postgresql",
  193. "required": true
  194. },
  195. {
  196. "name": "POSTGRESQL_USER",
  197. "displayName": "PostgreSQL Connection Username",
  198. "description": "Username for PostgreSQL user that will be used for accessing the database.",
  199. "generate": "expression",
  200. "from": "user[A-Z0-9]{3}",
  201. "required": true
  202. },
  203. {
  204. "name": "POSTGRESQL_PASSWORD",
  205. "displayName": "PostgreSQL Connection Password",
  206. "description": "Password for the PostgreSQL connection user.",
  207. "generate": "expression",
  208. "from": "[a-zA-Z0-9]{16}",
  209. "required": true
  210. },
  211. {
  212. "name": "POSTGRESQL_DATABASE",
  213. "displayName": "PostgreSQL Database Name",
  214. "description": "Name of the PostgreSQL database accessed.",
  215. "value": "sampledb",
  216. "required": true
  217. },
  218. {
  219. "name": "VOLUME_CAPACITY",
  220. "displayName": "Volume Capacity",
  221. "description": "Volume space available for data, e.g. 512Mi, 2Gi.",
  222. "value": "1Gi",
  223. "required": true
  224. },
  225. {
  226. "name": "POSTGRESQL_VERSION",
  227. "displayName": "Version of PostgreSQL Image",
  228. "description": "Version of PostgreSQL image to be used (9.2, 9.4, 9.5 or latest).",
  229. "value": "9.5",
  230. "required": true
  231. }
  232. ],
  233. "labels": {
  234. "template": "postgresql-persistent-template"
  235. }
  236. }