postgresql-persistent-template.json 9.0 KB

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