mongodb-ephemeral-template.json 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "mongodb-ephemeral",
  6. "creationTimestamp": null,
  7. "annotations": {
  8. "description": "MongoDB database service, without persistent storage. WARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
  9. "iconClass": "icon-mongodb",
  10. "tags": "database,mongodb"
  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": "mongo",
  25. "protocol": "TCP",
  26. "port": 27017,
  27. "targetPort": 27017,
  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. "mongodb"
  59. ],
  60. "from": {
  61. "kind": "ImageStreamTag",
  62. "name": "mongodb:${MONGODB_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": "mongodb",
  87. "image": " ",
  88. "ports": [
  89. {
  90. "containerPort": 27017,
  91. "protocol": "TCP"
  92. }
  93. ],
  94. "readinessProbe": {
  95. "timeoutSeconds": 1,
  96. "initialDelaySeconds": 3,
  97. "exec": {
  98. "command": [ "/bin/sh", "-i", "-c", "mongo 127.0.0.1:27017/$MONGODB_DATABASE -u $MONGODB_USER -p $MONGODB_PASSWORD --eval=\"quit()\""]
  99. }
  100. },
  101. "livenessProbe": {
  102. "timeoutSeconds": 1,
  103. "initialDelaySeconds": 30,
  104. "tcpSocket": {
  105. "port": 27017
  106. }
  107. },
  108. "env": [
  109. {
  110. "name": "MONGODB_USER",
  111. "value": "${MONGODB_USER}"
  112. },
  113. {
  114. "name": "MONGODB_PASSWORD",
  115. "value": "${MONGODB_PASSWORD}"
  116. },
  117. {
  118. "name": "MONGODB_DATABASE",
  119. "value": "${MONGODB_DATABASE}"
  120. },
  121. {
  122. "name": "MONGODB_ADMIN_PASSWORD",
  123. "value": "${MONGODB_ADMIN_PASSWORD}"
  124. }
  125. ],
  126. "resources": {
  127. "limits": {
  128. "memory": "${MEMORY_LIMIT}"
  129. }
  130. },
  131. "volumeMounts": [
  132. {
  133. "name": "${DATABASE_SERVICE_NAME}-data",
  134. "mountPath": "/var/lib/mongodb/data"
  135. }
  136. ],
  137. "terminationMessagePath": "/dev/termination-log",
  138. "imagePullPolicy": "IfNotPresent",
  139. "capabilities": {},
  140. "securityContext": {
  141. "capabilities": {},
  142. "privileged": false
  143. }
  144. }
  145. ],
  146. "volumes": [
  147. {
  148. "name": "${DATABASE_SERVICE_NAME}-data",
  149. "emptyDir": {
  150. "medium": ""
  151. }
  152. }
  153. ],
  154. "restartPolicy": "Always",
  155. "dnsPolicy": "ClusterFirst"
  156. }
  157. }
  158. },
  159. "status": {}
  160. }
  161. ],
  162. "parameters": [
  163. {
  164. "name": "MEMORY_LIMIT",
  165. "displayName": "Memory Limit",
  166. "description": "Maximum amount of memory the container can use.",
  167. "value": "512Mi"
  168. },
  169. {
  170. "name": "NAMESPACE",
  171. "displayName": "Namespace",
  172. "description": "The OpenShift Namespace where the ImageStream resides.",
  173. "value": "openshift"
  174. },
  175. {
  176. "name": "DATABASE_SERVICE_NAME",
  177. "displayName": "Database Service Name",
  178. "description": "The name of the OpenShift Service exposed for the database.",
  179. "value": "mongodb",
  180. "required": true
  181. },
  182. {
  183. "name": "MONGODB_USER",
  184. "displayName": "MongoDB Connection Username",
  185. "description": "Username for MongoDB user that will be used for accessing the database.",
  186. "generate": "expression",
  187. "from": "user[A-Z0-9]{3}",
  188. "required": true
  189. },
  190. {
  191. "name": "MONGODB_PASSWORD",
  192. "displayName": "MongoDB Connection Password",
  193. "description": "Password for the MongoDB connection user.",
  194. "generate": "expression",
  195. "from": "[a-zA-Z0-9]{16}",
  196. "required": true
  197. },
  198. {
  199. "name": "MONGODB_DATABASE",
  200. "displayName": "MongoDB Database Name",
  201. "description": "Name of the MongoDB database accessed.",
  202. "value": "sampledb",
  203. "required": true
  204. },
  205. {
  206. "name": "MONGODB_ADMIN_PASSWORD",
  207. "displayName": "MongoDB Admin Password",
  208. "description": "Password for the database admin user.",
  209. "generate": "expression",
  210. "from": "[a-zA-Z0-9]{16}",
  211. "required": true
  212. },
  213. {
  214. "name": "MONGODB_VERSION",
  215. "displayName": "Version of MongoDB Image",
  216. "description": "Version of MongoDB image to be used (2.4, 2.6, 3.2 or latest).",
  217. "value": "3.2",
  218. "required": true
  219. }
  220. ],
  221. "labels": {
  222. "template": "mongodb-ephemeral-template"
  223. },
  224. "message": "You can connect to the database using MongoDB connection URL mongodb://${MONGODB_USER}:${MONGODB_PASSWORD}@${DATABASE_SERVICE_NAME}/${MONGODB_DATABASE}"
  225. }