mongodb-ephemeral-template.json 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. {
  2. "kind": "Template",
  3. "apiVersion": "v1",
  4. "metadata": {
  5. "name": "mongodb-ephemeral",
  6. "annotations": {
  7. "openshift.io/display-name": "MongoDB (Ephemeral)",
  8. "description": "MongoDB database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mongodb-container/blob/master/3.2/README.md.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
  9. "iconClass": "icon-mongodb",
  10. "tags": "database,mongodb",
  11. "openshift.io/long-description": "This template provides a standalone MongoDB 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.",
  12. "openshift.io/provider-display-name": "Red Hat, Inc.",
  13. "openshift.io/documentation-url": "https://docs.openshift.org/latest/using_images/db_images/mongodb.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: ${MONGODB_USER}\n Password: ${MONGODB_PASSWORD}\n Database Name: ${MONGODB_DATABASE}\n Connection URL: mongodb://${MONGODB_USER}:${MONGODB_PASSWORD}@${DATABASE_SERVICE_NAME}/${MONGODB_DATABASE}\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/mongodb-container/blob/master/3.2/README.md.",
  18. "labels": {
  19. "template": "mongodb-ephemeral-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-admin_password": "{.data['database-admin-password']}",
  31. "template.openshift.io/expose-database_name": "{.data['database-name']}"
  32. }
  33. },
  34. "stringData" : {
  35. "database-user" : "${MONGODB_USER}",
  36. "database-password" : "${MONGODB_PASSWORD}",
  37. "database-admin-password" : "${MONGODB_ADMIN_PASSWORD}",
  38. "database-name" : "${MONGODB_DATABASE}"
  39. }
  40. },
  41. {
  42. "kind": "Service",
  43. "apiVersion": "v1",
  44. "metadata": {
  45. "name": "${DATABASE_SERVICE_NAME}",
  46. "annotations": {
  47. "template.openshift.io/expose-uri": "mongodb://{.spec.clusterIP}:{.spec.ports[?(.name==\"mongo\")].port}"
  48. }
  49. },
  50. "spec": {
  51. "ports": [
  52. {
  53. "name": "mongo",
  54. "protocol": "TCP",
  55. "port": 27017,
  56. "targetPort": 27017,
  57. "nodePort": 0
  58. }
  59. ],
  60. "selector": {
  61. "name": "${DATABASE_SERVICE_NAME}"
  62. },
  63. "type": "ClusterIP",
  64. "sessionAffinity": "None"
  65. },
  66. "status": {
  67. "loadBalancer": {}
  68. }
  69. },
  70. {
  71. "kind": "DeploymentConfig",
  72. "apiVersion": "v1",
  73. "metadata": {
  74. "name": "${DATABASE_SERVICE_NAME}",
  75. "annotations": {
  76. "template.alpha.openshift.io/wait-for-ready": "true"
  77. }
  78. },
  79. "spec": {
  80. "strategy": {
  81. "type": "Recreate"
  82. },
  83. "triggers": [
  84. {
  85. "type": "ImageChange",
  86. "imageChangeParams": {
  87. "automatic": true,
  88. "containerNames": [
  89. "mongodb"
  90. ],
  91. "from": {
  92. "kind": "ImageStreamTag",
  93. "name": "mongodb:${MONGODB_VERSION}",
  94. "namespace": "${NAMESPACE}"
  95. },
  96. "lastTriggeredImage": ""
  97. }
  98. },
  99. {
  100. "type": "ConfigChange"
  101. }
  102. ],
  103. "replicas": 1,
  104. "selector": {
  105. "name": "${DATABASE_SERVICE_NAME}"
  106. },
  107. "template": {
  108. "metadata": {
  109. "labels": {
  110. "name": "${DATABASE_SERVICE_NAME}"
  111. }
  112. },
  113. "spec": {
  114. "containers": [
  115. {
  116. "name": "mongodb",
  117. "image": " ",
  118. "ports": [
  119. {
  120. "containerPort": 27017,
  121. "protocol": "TCP"
  122. }
  123. ],
  124. "readinessProbe": {
  125. "timeoutSeconds": 1,
  126. "initialDelaySeconds": 3,
  127. "exec": {
  128. "command": [ "/bin/sh", "-i", "-c", "mongo 127.0.0.1:27017/$MONGODB_DATABASE -u $MONGODB_USER -p $MONGODB_PASSWORD --eval=\"quit()\""]
  129. }
  130. },
  131. "livenessProbe": {
  132. "timeoutSeconds": 1,
  133. "initialDelaySeconds": 30,
  134. "tcpSocket": {
  135. "port": 27017
  136. }
  137. },
  138. "env": [
  139. {
  140. "name": "MONGODB_USER",
  141. "valueFrom": {
  142. "secretKeyRef" : {
  143. "name" : "${DATABASE_SERVICE_NAME}",
  144. "key" : "database-user"
  145. }
  146. }
  147. },
  148. {
  149. "name": "MONGODB_PASSWORD",
  150. "valueFrom": {
  151. "secretKeyRef" : {
  152. "name" : "${DATABASE_SERVICE_NAME}",
  153. "key" : "database-password"
  154. }
  155. }
  156. },
  157. {
  158. "name": "MONGODB_ADMIN_PASSWORD",
  159. "valueFrom": {
  160. "secretKeyRef" : {
  161. "name" : "${DATABASE_SERVICE_NAME}",
  162. "key" : "database-admin-password"
  163. }
  164. }
  165. },
  166. {
  167. "name": "MONGODB_DATABASE",
  168. "valueFrom": {
  169. "secretKeyRef" : {
  170. "name" : "${DATABASE_SERVICE_NAME}",
  171. "key" : "database-name"
  172. }
  173. }
  174. }
  175. ],
  176. "resources": {
  177. "limits": {
  178. "memory": "${MEMORY_LIMIT}"
  179. }
  180. },
  181. "volumeMounts": [
  182. {
  183. "name": "${DATABASE_SERVICE_NAME}-data",
  184. "mountPath": "/var/lib/mongodb/data"
  185. }
  186. ],
  187. "terminationMessagePath": "/dev/termination-log",
  188. "imagePullPolicy": "IfNotPresent",
  189. "capabilities": {},
  190. "securityContext": {
  191. "capabilities": {},
  192. "privileged": false
  193. }
  194. }
  195. ],
  196. "volumes": [
  197. {
  198. "name": "${DATABASE_SERVICE_NAME}-data",
  199. "emptyDir": {
  200. "medium": ""
  201. }
  202. }
  203. ],
  204. "restartPolicy": "Always",
  205. "dnsPolicy": "ClusterFirst"
  206. }
  207. }
  208. },
  209. "status": {}
  210. }
  211. ],
  212. "parameters": [
  213. {
  214. "name": "MEMORY_LIMIT",
  215. "displayName": "Memory Limit",
  216. "description": "Maximum amount of memory the container can use.",
  217. "value": "512Mi",
  218. "required": true
  219. },
  220. {
  221. "name": "NAMESPACE",
  222. "displayName": "Namespace",
  223. "description": "The OpenShift Namespace where the ImageStream resides.",
  224. "value": "openshift"
  225. },
  226. {
  227. "name": "DATABASE_SERVICE_NAME",
  228. "displayName": "Database Service Name",
  229. "description": "The name of the OpenShift Service exposed for the database.",
  230. "value": "mongodb",
  231. "required": true
  232. },
  233. {
  234. "name": "MONGODB_USER",
  235. "displayName": "MongoDB Connection Username",
  236. "description": "Username for MongoDB user that will be used for accessing the database.",
  237. "generate": "expression",
  238. "from": "user[A-Z0-9]{3}",
  239. "required": true
  240. },
  241. {
  242. "name": "MONGODB_PASSWORD",
  243. "displayName": "MongoDB Connection Password",
  244. "description": "Password for the MongoDB connection user.",
  245. "generate": "expression",
  246. "from": "[a-zA-Z0-9]{16}",
  247. "required": true
  248. },
  249. {
  250. "name": "MONGODB_DATABASE",
  251. "displayName": "MongoDB Database Name",
  252. "description": "Name of the MongoDB database accessed.",
  253. "value": "sampledb",
  254. "required": true
  255. },
  256. {
  257. "name": "MONGODB_ADMIN_PASSWORD",
  258. "displayName": "MongoDB Admin Password",
  259. "description": "Password for the database admin user.",
  260. "generate": "expression",
  261. "from": "[a-zA-Z0-9]{16}",
  262. "required": true
  263. },
  264. {
  265. "name": "MONGODB_VERSION",
  266. "displayName": "Version of MongoDB Image",
  267. "description": "Version of MongoDB image to be used (2.4, 2.6, 3.2 or latest).",
  268. "value": "3.2",
  269. "required": true
  270. }
  271. ]
  272. }