postgresql-ephemeral-template.json 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. {
  2. "apiVersion": "v1",
  3. "kind": "Template",
  4. "labels": {
  5. "template": "postgresql-ephemeral-template"
  6. },
  7. "message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${POSTGRESQL_USER}\n Password: ${POSTGRESQL_PASSWORD}\n Database Name: ${POSTGRESQL_DATABASE}\n Connection URL: postgresql://${DATABASE_SERVICE_NAME}:5432/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/.",
  8. "metadata": {
  9. "annotations": {
  10. "description": "PostgreSQL database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
  11. "iconClass": "icon-postgresql",
  12. "openshift.io/display-name": "PostgreSQL (Ephemeral)",
  13. "openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/postgresql.html",
  14. "openshift.io/long-description": "This template provides a standalone PostgreSQL server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
  15. "openshift.io/provider-display-name": "Red Hat, Inc.",
  16. "openshift.io/support-url": "https://access.redhat.com",
  17. "tags": "database,postgresql"
  18. },
  19. "name": "postgresql-ephemeral"
  20. },
  21. "objects": [
  22. {
  23. "apiVersion": "v1",
  24. "kind": "Secret",
  25. "metadata": {
  26. "annotations": {
  27. "template.openshift.io/expose-database_name": "{.data['database-name']}",
  28. "template.openshift.io/expose-password": "{.data['database-password']}",
  29. "template.openshift.io/expose-username": "{.data['database-user']}"
  30. },
  31. "name": "${DATABASE_SERVICE_NAME}"
  32. },
  33. "stringData": {
  34. "database-name": "${POSTGRESQL_DATABASE}",
  35. "database-password": "${POSTGRESQL_PASSWORD}",
  36. "database-user": "${POSTGRESQL_USER}"
  37. }
  38. },
  39. {
  40. "apiVersion": "v1",
  41. "kind": "Service",
  42. "metadata": {
  43. "annotations": {
  44. "template.openshift.io/expose-uri": "postgres://{.spec.clusterIP}:{.spec.ports[?(.name==\"postgresql\")].port}"
  45. },
  46. "name": "${DATABASE_SERVICE_NAME}"
  47. },
  48. "spec": {
  49. "ports": [
  50. {
  51. "name": "postgresql",
  52. "nodePort": 0,
  53. "port": 5432,
  54. "protocol": "TCP",
  55. "targetPort": 5432
  56. }
  57. ],
  58. "selector": {
  59. "name": "${DATABASE_SERVICE_NAME}"
  60. },
  61. "sessionAffinity": "None",
  62. "type": "ClusterIP"
  63. },
  64. "status": {
  65. "loadBalancer": {}
  66. }
  67. },
  68. {
  69. "apiVersion": "v1",
  70. "kind": "DeploymentConfig",
  71. "metadata": {
  72. "annotations": {
  73. "template.alpha.openshift.io/wait-for-ready": "true"
  74. },
  75. "name": "${DATABASE_SERVICE_NAME}"
  76. },
  77. "spec": {
  78. "replicas": 1,
  79. "selector": {
  80. "name": "${DATABASE_SERVICE_NAME}"
  81. },
  82. "strategy": {
  83. "type": "Recreate"
  84. },
  85. "template": {
  86. "metadata": {
  87. "labels": {
  88. "name": "${DATABASE_SERVICE_NAME}"
  89. }
  90. },
  91. "spec": {
  92. "containers": [
  93. {
  94. "capabilities": {},
  95. "env": [
  96. {
  97. "name": "POSTGRESQL_USER",
  98. "valueFrom": {
  99. "secretKeyRef": {
  100. "key": "database-user",
  101. "name": "${DATABASE_SERVICE_NAME}"
  102. }
  103. }
  104. },
  105. {
  106. "name": "POSTGRESQL_PASSWORD",
  107. "valueFrom": {
  108. "secretKeyRef": {
  109. "key": "database-password",
  110. "name": "${DATABASE_SERVICE_NAME}"
  111. }
  112. }
  113. },
  114. {
  115. "name": "POSTGRESQL_DATABASE",
  116. "valueFrom": {
  117. "secretKeyRef": {
  118. "key": "database-name",
  119. "name": "${DATABASE_SERVICE_NAME}"
  120. }
  121. }
  122. }
  123. ],
  124. "image": " ",
  125. "imagePullPolicy": "IfNotPresent",
  126. "livenessProbe": {
  127. "exec": {
  128. "command": [
  129. "/usr/libexec/check-container",
  130. "--live"
  131. ]
  132. },
  133. "initialDelaySeconds": 120,
  134. "timeoutSeconds": 10
  135. },
  136. "name": "postgresql",
  137. "ports": [
  138. {
  139. "containerPort": 5432,
  140. "protocol": "TCP"
  141. }
  142. ],
  143. "readinessProbe": {
  144. "exec": {
  145. "command": [
  146. "/usr/libexec/check-container"
  147. ]
  148. },
  149. "initialDelaySeconds": 5,
  150. "timeoutSeconds": 1
  151. },
  152. "resources": {
  153. "limits": {
  154. "memory": "${MEMORY_LIMIT}"
  155. }
  156. },
  157. "securityContext": {
  158. "capabilities": {},
  159. "privileged": false
  160. },
  161. "terminationMessagePath": "/dev/termination-log",
  162. "volumeMounts": [
  163. {
  164. "mountPath": "/var/lib/pgsql/data",
  165. "name": "${DATABASE_SERVICE_NAME}-data"
  166. }
  167. ]
  168. }
  169. ],
  170. "dnsPolicy": "ClusterFirst",
  171. "restartPolicy": "Always",
  172. "volumes": [
  173. {
  174. "emptyDir": {
  175. "medium": ""
  176. },
  177. "name": "${DATABASE_SERVICE_NAME}-data"
  178. }
  179. ]
  180. }
  181. },
  182. "triggers": [
  183. {
  184. "imageChangeParams": {
  185. "automatic": true,
  186. "containerNames": [
  187. "postgresql"
  188. ],
  189. "from": {
  190. "kind": "ImageStreamTag",
  191. "name": "postgresql:${POSTGRESQL_VERSION}",
  192. "namespace": "${NAMESPACE}"
  193. },
  194. "lastTriggeredImage": ""
  195. },
  196. "type": "ImageChange"
  197. },
  198. {
  199. "type": "ConfigChange"
  200. }
  201. ]
  202. },
  203. "status": {}
  204. }
  205. ],
  206. "parameters": [
  207. {
  208. "description": "Maximum amount of memory the container can use.",
  209. "displayName": "Memory Limit",
  210. "name": "MEMORY_LIMIT",
  211. "required": true,
  212. "value": "512Mi"
  213. },
  214. {
  215. "description": "The OpenShift Namespace where the ImageStream resides.",
  216. "displayName": "Namespace",
  217. "name": "NAMESPACE",
  218. "value": "openshift"
  219. },
  220. {
  221. "description": "The name of the OpenShift Service exposed for the database.",
  222. "displayName": "Database Service Name",
  223. "name": "DATABASE_SERVICE_NAME",
  224. "required": true,
  225. "value": "postgresql"
  226. },
  227. {
  228. "description": "Username for PostgreSQL user that will be used for accessing the database.",
  229. "displayName": "PostgreSQL Connection Username",
  230. "from": "user[A-Z0-9]{3}",
  231. "generate": "expression",
  232. "name": "POSTGRESQL_USER",
  233. "required": true
  234. },
  235. {
  236. "description": "Password for the PostgreSQL connection user.",
  237. "displayName": "PostgreSQL Connection Password",
  238. "from": "[a-zA-Z0-9]{16}",
  239. "generate": "expression",
  240. "name": "POSTGRESQL_PASSWORD",
  241. "required": true
  242. },
  243. {
  244. "description": "Name of the PostgreSQL database accessed.",
  245. "displayName": "PostgreSQL Database Name",
  246. "name": "POSTGRESQL_DATABASE",
  247. "required": true,
  248. "value": "sampledb"
  249. },
  250. {
  251. "description": "Version of PostgreSQL image to be used (9.4, 9.5, 9.6 or latest).",
  252. "displayName": "Version of PostgreSQL Image",
  253. "name": "POSTGRESQL_VERSION",
  254. "required": true,
  255. "value": "9.6"
  256. }
  257. ]
  258. }