postgresql-ephemeral-template.json 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "postgresql-ephemeral",
  6. "creationTimestamp": null,
  7. "annotations": {
  8. "description": "PostgreSQL database service, without persistent storage. WARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
  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": "DeploymentConfig",
  43. "apiVersion": "v1",
  44. "metadata": {
  45. "name": "${DATABASE_SERVICE_NAME}",
  46. "creationTimestamp": null
  47. },
  48. "spec": {
  49. "strategy": {
  50. "type": "Recreate"
  51. },
  52. "triggers": [
  53. {
  54. "type": "ImageChange",
  55. "imageChangeParams": {
  56. "automatic": true,
  57. "containerNames": [
  58. "postgresql"
  59. ],
  60. "from": {
  61. "kind": "ImageStreamTag",
  62. "name": "postgresql:${POSTGRESQL_VERSION}",
  63. "namespace": "${NAMESPACE}"
  64. },
  65. "lastTriggeredImage": ""
  66. }
  67. },
  68. {
  69. "type": "ConfigChange"
  70. }
  71. ],
  72. "replicas": 1,
  73. "selector": {
  74. "name": "${DATABASE_SERVICE_NAME}"
  75. },
  76. "template": {
  77. "metadata": {
  78. "creationTimestamp": null,
  79. "labels": {
  80. "name": "${DATABASE_SERVICE_NAME}"
  81. }
  82. },
  83. "spec": {
  84. "containers": [
  85. {
  86. "name": "postgresql",
  87. "image": " ",
  88. "ports": [
  89. {
  90. "containerPort": 5432,
  91. "protocol": "TCP"
  92. }
  93. ],
  94. "readinessProbe": {
  95. "timeoutSeconds": 1,
  96. "initialDelaySeconds": 5,
  97. "exec": {
  98. "command": [ "/bin/sh", "-i", "-c", "psql -h 127.0.0.1 -U $POSTGRESQL_USER -q -d $POSTGRESQL_DATABASE -c 'SELECT 1'"]
  99. }
  100. },
  101. "livenessProbe": {
  102. "timeoutSeconds": 1,
  103. "initialDelaySeconds": 30,
  104. "tcpSocket": {
  105. "port": 5432
  106. }
  107. },
  108. "env": [
  109. {
  110. "name": "POSTGRESQL_USER",
  111. "value": "${POSTGRESQL_USER}"
  112. },
  113. {
  114. "name": "POSTGRESQL_PASSWORD",
  115. "value": "${POSTGRESQL_PASSWORD}"
  116. },
  117. {
  118. "name": "POSTGRESQL_DATABASE",
  119. "value": "${POSTGRESQL_DATABASE}"
  120. }
  121. ],
  122. "resources": {
  123. "limits": {
  124. "memory": "${MEMORY_LIMIT}"
  125. }
  126. },
  127. "volumeMounts": [
  128. {
  129. "name": "${DATABASE_SERVICE_NAME}-data",
  130. "mountPath": "/var/lib/pgsql/data"
  131. }
  132. ],
  133. "terminationMessagePath": "/dev/termination-log",
  134. "imagePullPolicy": "IfNotPresent",
  135. "capabilities": {},
  136. "securityContext": {
  137. "capabilities": {},
  138. "privileged": false
  139. }
  140. }
  141. ],
  142. "volumes": [
  143. {
  144. "name": "${DATABASE_SERVICE_NAME}-data",
  145. "emptyDir": {
  146. "medium": ""
  147. }
  148. }
  149. ],
  150. "restartPolicy": "Always",
  151. "dnsPolicy": "ClusterFirst"
  152. }
  153. }
  154. },
  155. "status": {}
  156. }
  157. ],
  158. "parameters": [
  159. {
  160. "name": "MEMORY_LIMIT",
  161. "displayName": "Memory Limit",
  162. "description": "Maximum amount of memory the container can use.",
  163. "value": "512Mi"
  164. },
  165. {
  166. "name": "NAMESPACE",
  167. "displayName": "Namespace",
  168. "description": "The OpenShift Namespace where the ImageStream resides.",
  169. "value": "openshift"
  170. },
  171. {
  172. "name": "DATABASE_SERVICE_NAME",
  173. "displayName": "Database Service Name",
  174. "description": "The name of the OpenShift Service exposed for the database.",
  175. "value": "postgresql",
  176. "required": true
  177. },
  178. {
  179. "name": "POSTGRESQL_USER",
  180. "displayName": "PostgreSQL Connection Username",
  181. "description": "Username for PostgreSQL user that will be used for accessing the database.",
  182. "generate": "expression",
  183. "from": "user[A-Z0-9]{3}",
  184. "required": true
  185. },
  186. {
  187. "name": "POSTGRESQL_PASSWORD",
  188. "displayName": "PostgreSQL Connection Password",
  189. "description": "Password for the PostgreSQL connection user.",
  190. "generate": "expression",
  191. "from": "[a-zA-Z0-9]{16}",
  192. "required": true
  193. },
  194. {
  195. "name": "POSTGRESQL_DATABASE",
  196. "displayName": "PostgreSQL Database Name",
  197. "description": "Name of the PostgreSQL database accessed.",
  198. "value": "sampledb",
  199. "required": true
  200. },
  201. {
  202. "name": "POSTGRESQL_VERSION",
  203. "displayName": "Version of PostgreSQL Image",
  204. "description": "Version of PostgreSQL image to be used (9.2, 9.4, 9.5 or latest).",
  205. "value": "9.5",
  206. "required": true
  207. }
  208. ],
  209. "labels": {
  210. "template": "postgresql-ephemeral-template"
  211. }
  212. }