postgresql-persistent-template.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. {
  2. "apiVersion": "v1",
  3. "kind": "Template",
  4. "labels": {
  5. "template": "postgresql-persistent-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, 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.",
  11. "iconClass": "icon-postgresql",
  12. "openshift.io/display-name": "PostgreSQL",
  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 stored on persistent storage. 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-persistent"
  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": "PersistentVolumeClaim",
  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. "apiVersion": "v1",
  87. "kind": "DeploymentConfig",
  88. "metadata": {
  89. "annotations": {
  90. "template.alpha.openshift.io/wait-for-ready": "true"
  91. },
  92. "name": "${DATABASE_SERVICE_NAME}"
  93. },
  94. "spec": {
  95. "replicas": 1,
  96. "selector": {
  97. "name": "${DATABASE_SERVICE_NAME}"
  98. },
  99. "strategy": {
  100. "type": "Recreate"
  101. },
  102. "template": {
  103. "metadata": {
  104. "labels": {
  105. "name": "${DATABASE_SERVICE_NAME}"
  106. }
  107. },
  108. "spec": {
  109. "containers": [
  110. {
  111. "capabilities": {},
  112. "env": [
  113. {
  114. "name": "POSTGRESQL_USER",
  115. "valueFrom": {
  116. "secretKeyRef": {
  117. "key": "database-user",
  118. "name": "${DATABASE_SERVICE_NAME}"
  119. }
  120. }
  121. },
  122. {
  123. "name": "POSTGRESQL_PASSWORD",
  124. "valueFrom": {
  125. "secretKeyRef": {
  126. "key": "database-password",
  127. "name": "${DATABASE_SERVICE_NAME}"
  128. }
  129. }
  130. },
  131. {
  132. "name": "POSTGRESQL_DATABASE",
  133. "valueFrom": {
  134. "secretKeyRef": {
  135. "key": "database-name",
  136. "name": "${DATABASE_SERVICE_NAME}"
  137. }
  138. }
  139. }
  140. ],
  141. "image": " ",
  142. "imagePullPolicy": "IfNotPresent",
  143. "livenessProbe": {
  144. "exec": {
  145. "command": [
  146. "/usr/libexec/check-container",
  147. "--live"
  148. ]
  149. },
  150. "initialDelaySeconds": 120,
  151. "timeoutSeconds": 10
  152. },
  153. "name": "postgresql",
  154. "ports": [
  155. {
  156. "containerPort": 5432,
  157. "protocol": "TCP"
  158. }
  159. ],
  160. "readinessProbe": {
  161. "exec": {
  162. "command": [
  163. "/usr/libexec/check-container"
  164. ]
  165. },
  166. "initialDelaySeconds": 5,
  167. "timeoutSeconds": 1
  168. },
  169. "resources": {
  170. "limits": {
  171. "memory": "${MEMORY_LIMIT}"
  172. }
  173. },
  174. "securityContext": {
  175. "capabilities": {},
  176. "privileged": false
  177. },
  178. "terminationMessagePath": "/dev/termination-log",
  179. "volumeMounts": [
  180. {
  181. "mountPath": "/var/lib/pgsql/data",
  182. "name": "${DATABASE_SERVICE_NAME}-data"
  183. }
  184. ]
  185. }
  186. ],
  187. "dnsPolicy": "ClusterFirst",
  188. "restartPolicy": "Always",
  189. "volumes": [
  190. {
  191. "name": "${DATABASE_SERVICE_NAME}-data",
  192. "persistentVolumeClaim": {
  193. "claimName": "${DATABASE_SERVICE_NAME}"
  194. }
  195. }
  196. ]
  197. }
  198. },
  199. "triggers": [
  200. {
  201. "imageChangeParams": {
  202. "automatic": true,
  203. "containerNames": [
  204. "postgresql"
  205. ],
  206. "from": {
  207. "kind": "ImageStreamTag",
  208. "name": "postgresql:${POSTGRESQL_VERSION}",
  209. "namespace": "${NAMESPACE}"
  210. },
  211. "lastTriggeredImage": ""
  212. },
  213. "type": "ImageChange"
  214. },
  215. {
  216. "type": "ConfigChange"
  217. }
  218. ]
  219. },
  220. "status": {}
  221. }
  222. ],
  223. "parameters": [
  224. {
  225. "description": "Maximum amount of memory the container can use.",
  226. "displayName": "Memory Limit",
  227. "name": "MEMORY_LIMIT",
  228. "required": true,
  229. "value": "512Mi"
  230. },
  231. {
  232. "description": "The OpenShift Namespace where the ImageStream resides.",
  233. "displayName": "Namespace",
  234. "name": "NAMESPACE",
  235. "value": "openshift"
  236. },
  237. {
  238. "description": "The name of the OpenShift Service exposed for the database.",
  239. "displayName": "Database Service Name",
  240. "name": "DATABASE_SERVICE_NAME",
  241. "required": true,
  242. "value": "postgresql"
  243. },
  244. {
  245. "description": "Username for PostgreSQL user that will be used for accessing the database.",
  246. "displayName": "PostgreSQL Connection Username",
  247. "from": "user[A-Z0-9]{3}",
  248. "generate": "expression",
  249. "name": "POSTGRESQL_USER",
  250. "required": true
  251. },
  252. {
  253. "description": "Password for the PostgreSQL connection user.",
  254. "displayName": "PostgreSQL Connection Password",
  255. "from": "[a-zA-Z0-9]{16}",
  256. "generate": "expression",
  257. "name": "POSTGRESQL_PASSWORD",
  258. "required": true
  259. },
  260. {
  261. "description": "Name of the PostgreSQL database accessed.",
  262. "displayName": "PostgreSQL Database Name",
  263. "name": "POSTGRESQL_DATABASE",
  264. "required": true,
  265. "value": "sampledb"
  266. },
  267. {
  268. "description": "Volume space available for data, e.g. 512Mi, 2Gi.",
  269. "displayName": "Volume Capacity",
  270. "name": "VOLUME_CAPACITY",
  271. "required": true,
  272. "value": "1Gi"
  273. },
  274. {
  275. "description": "Version of PostgreSQL image to be used (9.4, 9.5, 9.6 or latest).",
  276. "displayName": "Version of PostgreSQL Image",
  277. "name": "POSTGRESQL_VERSION",
  278. "required": true,
  279. "value": "9.6"
  280. }
  281. ]
  282. }